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
0
votes
0 answers

How to add global tags on geany (windows 8.1)?

When I was working with windows 7, i loaded the tags file the directory C/user/AppData/Roaming/Geany/Tags, and it worked. But when i have tried the same method on windows 8.1 , it didn't work. The error message is "could not load tags file"
hakan
  • 1
  • 1
0
votes
1 answer

Geany 1.24: Color Chooser differences (same installer, different Windows versions)

Installing Geany 1.24 from the win installer ( geany-1.24_setup.exe ) on two different 64-bit versions of Windows (desktop: Win 7 Ultimate; VPS: Windows Server 2008R2), I see different 'Color Choosers'. Both were installed entirely 'vanilla', apart…
GT.
  • 1,140
  • 13
  • 20
0
votes
0 answers

Adding a new Scintilla Lexer to Geany

I wrote a new lexer for a custom Language in Scintilla. I followed both scintilla and geany documentation along with hacking geany. However geany does not recognize my language. I also implement filetype for it but still it does not seem among…
MIRMIX
  • 1,052
  • 2
  • 14
  • 40
0
votes
1 answer

How to customize indentation in Geany

Based on geany documentation Geany knows four types of auto-indentation: None: Disables auto-indentation completely. Basic: Adds the same amount of whitespace on a new line as on the last line. Current chars: Does the same as Basic but…
MIRMIX
  • 1,052
  • 2
  • 14
  • 40
0
votes
1 answer

Multi functional Standalone Editor for custom language

I am considered to generate Editor for my company language. It will be better if this editor will be standalone. I have limited time (2.5 week) and limited knowledge (3yrs of university). This language is does not look like any other language and…
MIRMIX
  • 1,052
  • 2
  • 14
  • 40
0
votes
1 answer

I cannot execute my Python code on Geany

I use Windows 8.1 and installed Geany 1.24 recently. It launches without a problem but i cannot execute the code, because it gives an error saving file. What can be the problem?
cydonia
  • 68
  • 5
0
votes
1 answer

Adding custom path to gcc command

i know there a a few posts already about this but I do not seem to be able to get it right. I am working on a shared project using geany and gcc. The file structure looks something like this: `/Documents/.../project/ main directory of project with…
FlyingTeller
  • 17,638
  • 3
  • 38
  • 53
0
votes
0 answers

Geany not running python code

I'm working with a code in python. Today I moved from the text editor Kate to Geany because some people recommended me to do this. This morning I was running from Geany without any problem, now I run the same code and get this error: Traceback (most…
Vladimir Vargas
  • 1,744
  • 4
  • 24
  • 48
0
votes
1 answer

Geany Project Includes Compiler Error

I have a weird problem in my Geany project. The project is extremely simple and contains 3 files all in the same directory: main.c, foo.h and foo.c. Compiler error: In file included from main.c:1:0: foo.h:4:12: warning: ‘bar’ used but never defined …
sazr
  • 24,984
  • 66
  • 194
  • 362
0
votes
1 answer

geany find special substring

I have a lot of php files and I want to find every occurance of htmlentities(some var); in geany, and I don't want that htmlentites(some var, ENT_QUOTES); got found, so it has to be something like: htmlentities(...); because the dots stand for…
0
votes
1 answer

Having Geany support syntax highlighting for my DSL

For the DSL I have developed, I wanted to have Geany support it as it does the embedded languages like java and C#. I created filetypes.myLang.conf and added the configuration fields as in the manual. For the filed [settings] I added :…
Mahdi
  • 251
  • 2
  • 12
0
votes
1 answer

undefined reference to sqrt(geany)

I use Geany for C programming. When I try to build the file it gives me error:undefined reference to sqrt. Compile: gcc -Wall -c "%f" Build: gcc -Wall -o "%e" "%f" Execute: ./%e I tried to add -lm to the build command but then it gives me gcc…
Marvin Micek
  • 103
  • 4
0
votes
1 answer

Mako Sytanx-Highlighting for Geany

Is there a Mako-template syntax-highlighting for Geany? or would I need to make a customized one? Thank you!
nessirosa
  • 3
  • 2
0
votes
1 answer

Considering Autocompletion. How to tell Geany in which directories to look for header files?

I am coming from KDE to XFCE and hence arrive from KDevelop at Geany. I have no plans of using Geany for any compilation stuff, prefering to write my own CMakeLists.txt files. However, what I loved about KDevelop and dearly would have again: In…
Markus-Hermann
  • 789
  • 11
  • 24
0
votes
1 answer

linker reports undefined reference but code compiles OK

I'm trying to learn enough c to satisfy my occasional need to write simple programs that answer specific questions I have. I've been following a tutorial and using Geany for ease of use. Instead, I can't seem to get the simplest program to run. Here…