I'm on Windows 10 and have Geany on version 2.0 with the plugin "Scoped Debugger: Relatively simple interface to GDB." installed.
To debug a program, what I am trying to do is compile it in the following way:
```
g++ -Wall -g -DTEST --debug -o "pruebas_varias" "pruebas_varias.cpp"
```
(in the directory: C:\Users\Username\Documents)
And then in the menus I go to `Debug->Configure` program and where it says `"Executable: " I put "C:\Users\Username\Documents\pruebas_varias.exe"` (without the quotes).
But when I go to run it I get the error:
```
"Error creating process /c/Program Files/Geany/C:\Users\Username\Documents\various_tests.exe, (error 2: The system cannot find the specified file.)"
```
Does anyone know what I could be doing wrong? On Ubuntu Mate 22.04 I tried it the same way and it seems to work fine.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1363
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/issues/1363(a)github.com>
I'm on Windows 10 and have Geany on version 2.0 with the plugin "Scoped Debugger: Relatively simple interface to GDB." installed.
To debug a program, what I am trying to do is compile it in the following way:
```
g++ -Wall -g -DTEST --debug -o "pruebas_varias" "pruebas_varias.cpp"
```
(in the directory: C:\Users\Username\Documents)
And then in the menus I go to `Debug->Configure` program and where it says `"Executable: " I put "C:\Users\Username\Documents\pruebas_varias.exe"` (without the quotes).
But when I go to run it I get the error:
```
"Error creating process /c/Program Files/Geany/C:\Users\Username\Documents\various_tests.exe, (error 2: The system cannot find the specified file.)"
```
Does anyone know what I could be doing wrong? On Ubuntu Mate 22.04 I tried it the same way and it seems to work fine.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3922
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3922(a)github.com>
In `Edit=>Preferences=>Editor.Features`, I added a checkbox "Comment Blank Line(s)" for issue #2239.
When this option is turned on and when commenting (`Edit=>Format=>Comment Line(s)`) or toggling comments (`Ctrl+E`), blank (empty) line(s) will also be commented.
For example, if you comment this code...
```Ruby
puts <<EOD
EOD
```
..., it will do this:
```Ruby
# puts <<EOD
#
# EOD
```
It should work for Comment, Uncomment, and Toggle. By default, it is off/false.
If this merge is accepted, `doc/geany.html` and the screenshot in this HTML file will need to be updated.
![features](https://user-images.githubusercontent.com/16524392/76850364-3310d600-6882-11ea-94de-b3f4e38585f9.png)
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2452
-- Commit Summary --
* Add "Comment Blank Line(s)" option
-- File Changes --
M data/geany.glade (20)
M doc/geany.txt (11)
M src/callbacks.c (2)
M src/editor.c (2)
M src/editor.h (1)
M src/keyfile.c (2)
M src/prefs.c (6)
-- Patch Links --
https://github.com/geany/geany/pull/2452.patchhttps://github.com/geany/geany/pull/2452.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/2452