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
-1
votes
1 answer

Geany Terminal has the characters spaced out for some reason

When I was playing around with terminal settings, my terminal started spacing out the characters a lot. I haven't played around with Geany settings other than that and I use it for C++. The computer I'm running Geany on is a Macbook Pro 14" M1 Pro.…
-1
votes
2 answers

geany error "Program exited with code: 126"

I'm trying to program a simple hello world program using c++/geany on the raspberry pi. However, when I try to run it. The output terminal says "Program exited with code: 126". Can anyone tell me what I'm doing wrong?…
bc345
  • 11
  • 2
-1
votes
1 answer

problem : compilation successful but wrong result

I'm coding in C on geany a program supposed to display 3 inputed int by descending order, the compilation is successfull but it displays me only the last number and two zero , my teacher told us to use function so... i don't know what's wrong in my…
Ad JR
  • 1
  • 1
-1
votes
2 answers

Why when I execute Pascal program, a part of the information in the console-box gets deleted?

I am using Geany to write a pascal program, but the thing is when i make a bi-dimensional array, and then i try to show it in a writeln() a part of what it should show in the box gets deleted. I tried with erasing all the clrscr from the code, but…
Fred
  • 11
  • 3
-1
votes
1 answer

How to open multiple files at the same time with geany in a batch script?

I'm having a weird problem when i try to open multiple files in geany with a batch script. The script is simple going in the folders i gave him as a list, and in each folder it'll open the Makefile here with geany. That is working; however, it'll…
Ablia
  • 191
  • 2
  • 10
-1
votes
2 answers

I am trying to add the path to Geany

I am a beginner trying to learn Python. I wrote a program using Geany and would like to build and execute it but I keep getting this error: "The system cannot find the path specified". I believe I added the right info to the Path though: Compile …
-1
votes
1 answer

IDE's sync with github

Are there any IDE's/text editors that can sync with github? Such as geany/action/light table etc. I've just started out learning python in my free time, using either my RPi or MacBook and would be nice to be able to streamline my files/projects.…
m147
  • 29
  • 4
-1
votes
2 answers

Slowly Appears printf, in C99

I want to make a func similar to a printf but that make the text appears slowly, by using a double for, one to print a char and one to take time: char phrase[30]={"Printf random"}; for(int a=0;a<=30;a++){ printf("%c",phrase[a]); …
Judal
  • 3
  • 2
-1
votes
1 answer

opengles 3D graphics raspberry pi

I can't find a tutorial for the use of OpenGLES 3D graphics in c++, on a raspberry pi so I can program a video game with c++, also, I cannot find a raspberry pi compatible OpenGLES library. Edit: At the time, I just couldn't find a library for…
Zopesconk
  • 50
  • 1
  • 4
  • 12
-1
votes
1 answer

Python code quits without doing anything

I have a problem. i am trying to program a menu for a game in python I am making now. But I have a problem. Every time I run the code, the code exits without even doing anything. i went through the code, and see nothing that can cause this. Here is…
-1
votes
1 answer

How to setup geany on mac to compile fortran (beginner)

I'm trying to compile a script in fortran for my thesis. I'm working on a mac and I've installed gfortran. I've installed geany then and it's ok. I think to have a setup problem because, when I write or open my code (.f90 extension), I get different…
TheInterestedOne
  • 748
  • 3
  • 12
  • 33
-1
votes
1 answer

Yet Another Syntax Highlighting in Geany Issue

I am trying to get Geany to recognize syntax highlighting for Falcon, but have had no luck thus far. I have tried following this SO solution, but no such luck. I am using version 1.23 of Geany on Fedora 18. The following is my custom…
Kyle Kanos
  • 3,257
  • 2
  • 23
  • 37
-2
votes
2 answers

Terminal for C++ in Ubuntu

I am using gVim as my text editor and I use it to write C++ and to execute my C++ file I have this map in my .vimrc: map :!x-terminal-emulator -e ./%:r But when I run it the terminal closes immediately after I write my input and I…
R0L3eX
  • 31
  • 3
-2
votes
1 answer

If-statement/Conditional argument not working in Geany (PYTHON)

age = 19 age == 18 Control panel is supposed to show FALSE but it is showing nothing. Control Panel Image Below
-2
votes
2 answers

Geany c++, error “lvalue required as left operand of assignment”

I try to define mathematical operations in geany but it fails to compile them. For example, a+b=c can't get compiled, but on the other hand a+b==c gets compiled but the result of lets say 2+4 is 0 so it is not right. same goes for a-b=d and other…
shonjo
  • 1
1 2 3
28
29