Questions tagged [geany]

Geany is a lightweight and fast IDE. It is using the GTK [2|3] toolkit while trying to keep only a low number of further dependencies from other packages.

Geany is a lightweight and fast IDE (integrated development environment). It was designed to have very few dependencies, and requires only the GTK 2 libraries to run.

It's based on Scintilla and is mostly written in C and C++.

428 questions
12
votes
2 answers

Custom syntax highlighting in Geany

I am trying to create custom syntax highlighting for Kivy '.kv' files in the Geany editor. Although the specific filetype seems irrelavant to the issue I'm having, as any efforts I make at getting syntax highlighting to work for a custom filetype…
Adam Gaskins
  • 399
  • 2
  • 3
  • 11
11
votes
0 answers

Move cursor to a new line after "Send Selection to Terminal" action in Geany

I set in geany a key shortcut to Send Selection to Terminal action which send the current line (or selection) to the build-in terminal (according to: shortcut to send selection to terminal in geany). Then I change send_selection_unsafe=false to…
Oto Kaláb
  • 98
  • 1
  • 10
11
votes
6 answers

How can I configure Geany to compile and run my Python programs?

Under the Build menu, I can see 'Execute' option, but it is greyed out. The only option available is 'Set Includes and Arguments'. When I click that both fields are already filled out. What do I have to write there?
Sergio Tapia
  • 40,006
  • 76
  • 183
  • 254
10
votes
2 answers

How can I get Geany to show me the methods a library has when I press the '.' key?

In visual studio, I could just press ctrl+spacekey and the methods appeared. In Geany is there a way for me to get this functionality?
Sergio Tapia
  • 40,006
  • 76
  • 183
  • 254
9
votes
1 answer

Run a node.js server from Geany

A simple question: Is it possible to configure the Geany IDE so that Node.js servers can be run directly from Geany using the "Run" button?
Anderson Green
  • 30,230
  • 67
  • 195
  • 328
9
votes
2 answers

How to add existing project into Geany

I have an existing C++ project which is built with Gnu Make. I want to develop the source under Geany but am unable find a way to import it.
Yordan Pavlov
  • 1,303
  • 2
  • 13
  • 26
8
votes
3 answers

Geany vs Eclipse for C development on large projects

I'm trying to find an IDE for C that will give me the same level of comfort I got used to from programming in Java. I heard good things about Geany (from related questions here on Stack Overflow), and am familiar with Eclipse from my work with Java,…
EpsilonVector
  • 3,973
  • 7
  • 38
  • 62
8
votes
3 answers

Geany autocomplete Python constraints

How can I get Geany to autocomplete an object's constraints? For example, I type: self.window.set_position(gtk.WIN_ And I want the list of possible constraints to show up such as WIN_POS_NONE and WIN_POS_CENTER etc. NOTE: CTRL+SPACE or…
Delorean
  • 491
  • 4
  • 17
8
votes
3 answers

JavaScript comment starting with /*!

My editor (Geany) changes the colour of a comment when a comment starts with /*!. What's the difference between /* ... */ and /*! ... */?
Phonethics
  • 547
  • 5
  • 14
8
votes
1 answer

C++11 Geany setup

I am learning C++ and I need to properly setup my compile and build commands in Geany for C++11. I thought I had them correct, but when using auto, I receive the following error: warning: ‘auto’ will change meaning in C++0x; please remove it…
mcd
  • 6,446
  • 9
  • 27
  • 32
7
votes
5 answers

How to add Go support to Geany

I am trying to make syntax hightlighting and building options work for Geany, any advice?
gkaykck
  • 2,347
  • 10
  • 35
  • 52
7
votes
1 answer

How can I disable automatic highlighting of the current line in Geany?

By default the current line is always highlighted in the Geany text editor. How can we disable this feature?
BhishanPoudel
  • 15,974
  • 21
  • 108
  • 169
7
votes
1 answer

Why does geany use #~ for comments in bash instead of just #?

When I select a block of text in Geany (editing a bash script) and hit Ctrl + E to comment, Geany inserts #~ at the beginning of every line, instead of just #. Why?
a06e
  • 18,594
  • 33
  • 93
  • 169
6
votes
1 answer

Regular Expression to Remove Line Breaks from Specific Lines

I have a text file with each paragraph on its own line. Some of the paragraphs got split at the start of a word. For example: Books are an effective way to communicate across time, both from the past and into the future. I could use regular…
Dave Brunker
  • 1,559
  • 5
  • 15
  • 23
6
votes
1 answer

Geany: Syntax highlighting for custom filetype for SOME words

Geany is a simple, fast and yet powerful text editor. It has quite strong support for syntax highlighting for almost all kinds of programming languages. I was wondering how to make a customized syntax highlighting for my special need program called…
BhishanPoudel
  • 15,974
  • 21
  • 108
  • 169
1
2
3
28 29