428 questions
0
votes
0
answers
66
views
How to add .tsx support in Geany editor?
I installed Geany for coding, and I want to add syntax highlight for TypeScript files
I already added #TypeScript=*.ts;*.tsx; to filetype_extensions.conf, and restarted it a few times, but it's not ...
0
votes
0
answers
24
views
Geany Version Pryce Shows Garbage C library prototypes
Upgraded my distro and got new version of Geany, version Pryce, Mar31, 2024.
Entering C code the function prototype hints show garbage
Ex. entering fprintf
gives the prompt I1024I(FILE * __stream,...
0
votes
1
answer
92
views
Geany Editor Sidebar
I installed the Geany Editor on Windows and tried to change the path for the documents in the sidebar. I was hoping that changing the Startup path and Project files path in the preferences will change ...
0
votes
1
answer
82
views
Why is Shift-Ctrl-V bound to Quit Geany - Is it possible to change it?
In many editing environments Ctrl-C and Ctrl-V are bound to Copy/Paste.
In bash Shift-Ctrl-C is bound to copy (marked portions of the terminal) to clipboard and Shift-Ctrl-V is bound to Paste to the ...
1
vote
1
answer
196
views
Geany Plugins are installed but not visible
I have installed (via chocolatey) geany-plugins on geany 2.0 on windows.
The plugins are aparently installed, but the list of available plugins in Tools->Plugin Manager does not reflect them:
I ...
2
votes
1
answer
62
views
Linking header file still leads to undefined reference
I have three files:
vector2d.h referencing my functions.
vector2d.c defining my functions.
test_vectors.c as the main file.
test_vectors.c doesn't build because it returns an undefined reference error ...
1
vote
0
answers
101
views
Using regex (Geany) to remove duplicate strings
I have Geany and I assume it uses PCRE regex. I have a list of lines that looks something like this:
Kurt Phoebe ColtKurt Phoebe Colt
Lane AnselLane Ansel
Taylor Retha EvansTaylor Retha Evans
Hilary ...
0
votes
1
answer
125
views
Inconsistent usage of Geany colour schemes
I'm new to developing C/C++ projects on Linux (specifically Raspberry Pi). I find that Geany seems to do everything I need. I also installed the official Colour Schemes as specified on the GitHub ...
1
vote
1
answer
65
views
Raspberry Pi; use geany(.py) to create a new folder and address code to it?
Sorry if this is obvious; I'm new to Rpi and Linux in general.
Im trying to create code for a timelapse camera such that when it turns on, it starts taking images and saves them to a folder.
The part ...
1
vote
0
answers
177
views
For Geany on Windows 11, how can I create a "build and run" command?
In Geany, I need to build the program first and then run it.
I was wondering if there is one button for build and run--as in codeblocks, for example--it would be nice. I've tried so many different ...
0
votes
0
answers
23
views
When i try to run/compile a java file with Geany it spits out an error [duplicate]
i wanted to learn java, and for text editor i use geany, i wanted to run this code:
public class Main {
public static void main(String args[]) {
System.out.print("Java!&...
1
vote
0
answers
70
views
Automatically continue Markdown list in Geany?
I write a lot of lists.
Like this one.
Very long lists, in fact.
But I hate having to manually type the * on each new line.
Is there any way to get Geany to automatically produce the * when I break a ...
1
vote
1
answer
368
views
How can I make Geany's Markdown syntax highlighting agree with indented code blocks?
Write the following in Geany
* Item 1
* My code block will go after this line break
```sql
CREATE EVENT SESSION query_performance ON SERVER
ADD EVENT sqlserver.sql_statement_completed(
```...
1
vote
0
answers
113
views
How to play a turtle graphics game using joystick on a raspberry pi?
I am trying to use a joystick as a controller for my snake game using a Raspberry Pi. The problem is that my analog signal reader is blocking the code for the game itself. When I load in the game the ...
0
votes
1
answer
144
views
Why does numpy module fail in genpy?
I did all the downloads, I checked, but I couldn't figure out why geany gave an error. Works in Pycharm, no module errorDownloads
GenpyPycharm
I installed numpy as a package from settings in pycharm. ...