While using Geany in Gnome I found that sometimes code navigations was slow,
changing to a new line o making selections were reflected after aprox 1 second
on the screen.
Just opening a file and navigating doesn't trigger this problem, after editing,
saving or selecting some text the issue shows up.
I have other setup of Stretch with MATE desktop and the problem isn't there.
I also compiled a clone of the geany github repo and I was able to reproduce the
problem (in Gnome).
(I filed a bug report to the debian package)
--
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/issues/1532
"None" in the menu item at the bottom is not translatable.
Perhaps the " (None)" part could just be removed since it already says "Without encoding".
![billede](https://github.com/geany/geany/assets/1836590/96b5c222-8e41-443b-9190-8eef275d0bd8)
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3624
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3624(a)github.com>
The charset "None" would be shown for the encoding name "Without encoding" and so it would be rather
redundant and the special value "None" should be
translatable but isn't.
Closes #3624.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3640
-- Commit Summary --
* Do not show charset "None" in the list of encodings
-- File Changes --
M src/encodings.c (5)
-- Patch Links --
https://github.com/geany/geany/pull/3640.patchhttps://github.com/geany/geany/pull/3640.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3640
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3640(a)github.com>
Hello,
I'm using: geany 2.0 (built on 2023-10-23 with GTK 3.24.38, GLib 2.76.5) on Linux fedora 6.5.9-200.fc38.x86_64.
I've noticed today (2023-11-06) a change in the behaviour of Geany: when accessing the symbol list by using a key binding from the editor, the focus does not change to the symbol list but stays on the editor. If I access the document list by using a key binding from the editor, the focus changes to the document list as expected. If I access the symbol list by using a key binding from the document list, the focus changes to the symbol list as expected. Accessing the editor by using a key binding from the document list or symbol list changes the focus to the editor as expected.
It makes impossible to move through the code using the symbol list without making one useless step through the document list, which is inconvenient, and wasn't the case until today (I've been using Geany for many years).
Thanks in advance for your time and consideration.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3678
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3678(a)github.com>
The `.mjs` extension is used by Node.js and others to denote JavaScript module files, unlike normal `.js` files these files are treated like ES6 modules by default.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3698
-- Commit Summary --
* Add `.mjs` extension for JavaScript
-- File Changes --
M data/filetype_extensions.conf (2)
-- Patch Links --
https://github.com/geany/geany/pull/3698.patchhttps://github.com/geany/geany/pull/3698.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3698
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3698(a)github.com>
For example, take this Ruby code:
```Ruby
(0..9).each do |i|
puts i
puts '-' if (i % 3) == 0
end
```
If you do Ctrl+E, it will produce this:
```Ruby
#(0..9).each do |i|
# puts i
# puts '-' if (i % 3) == 0
#end
```
But, I'd like it to produce this:
```Ruby
#(0..9).each do |i|
# puts i
#
# puts '-' if (i % 3) == 0
#end
```
You can imagine that code with many blank newlines makes it hard to distinguish if the whole block is commented, or just sections.
Is there a setting for this?
I think this is useful for usually-single-line-commented languages, like Ruby/Python, especially if your settings don't strip spaces on newline.
Thanks.
--
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/issues/2239
I am having the same identical issue as this 'closed' thread - https://github.com/geany/geany/issues/2922
Can anyone explain?
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3138
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3138(a)github.com>
The Debugger plugin uses GDB which I read somewhere, has functionality to debug python code. I have a python file called this_script.py how do I debug the code inside this_script.py? I want to debug using step over, step into, step out etc. Can someone give a step by step info of how to set up python debugging in Debugger plugin.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/discussions/3692
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/repo-discussions/3692(a)github.com>
It would be so perfect to have those elements in the Customize Toolbar, so one could place them in the toolbar for a fast access:
- Show Line Endings
- Show White Space
- Line Wrapping
- Show Line numbers
- Hide/show menu bar (or even more perfect: menu-symbol, like in Firefox)
Or, is there a tutorial how to add elements in the Customize Toolbar?
By the way, the White Spaces are too small and nearly invisible.
--
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/issues/2690