Hi.
I think I've been experiencing for quite some time now.
I always have set the option of "Detect width from file", but Geany seems to always set my tab width as 2 (I have set 2 as width in chars of a single indent), no matter the width that is already in the file.
For instance, let's say I open a 8-width tabs file: Geany displays the indentations as two-width, but I expected them to be eight-width.
I'm talking about files with tab characters for indentation. No sure about files with whitespaces.
--
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/1379
For example Geany couldn't find text `Без названия`, but able find `Без` and `названия`
Screencast: https://youtu.be/uLKgI7ZkacI
--
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/1366
I often see a "File ... was not found on disk!" infobar when a file becomes unavailable while being edited in Geany. When the file reappears (e.g. after re-mounting a disk or network share or when undoing a rename or delete operation outside of Geany) and I reload the file (by pressing Ctrl+R or via the File menu), the tab title turns from red to black, suggesting that the reload was successful. However the "File not found" infobar remains visible, and I have to click the Cancel button to make it disappear.
The "File not found" infobar should behave like its sister infobar for a timestamp mismatch, "The file ... on the disk is more recent than the current buffer", which disappears automatically after reloading the file.
Even better, Geany could be a little more patient and/or intelligent when a file becomes unavailable on disk. Most of the time I see this error message after resuming my machine from suspend, when a network share on which a file that I'm editing in Geany resides needs a couple of seconds to come up again.
Ideally Geany could (a) use a slightly longer timeout before throwing an error, at least while no actual editing is being done or the user doesn't try to save the file and/or (b) retry to locate the missing file a couple of times, with short intervals in between, before showing an error (or hiding the infobar automatically when the file reappears on disk).
--
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/1373
Feature request: allow a keybinding for Top of Document and Bottom of Document to go to the first resp. the last line in the file.
--
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/1372
Original report received via email, here's an enhanced test case:
```C
typedef int T;
int func1( \
int var1, int var2, ...);
int func2(int var1, \
int var2, ...);
int func3(T \
var1, T var2, ...);
int func4(T var1, \
T var2, ...);
int func5(int \
var1, int var2, ...);
```
Only emits tags for `func2()`, `func4()` and `func5()`. Which is odd.
--
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/1370