When a "regular expression is too large" error happens, you may not see the cause of the error, because the explanation shows horizontally after the regular expression, which as we know, is too large.
This error message seems to be generated by PCRE. Perhaps if the error message is too large to show, there should be a popup alert. Or perhaps just always do a popup alert.
You can reproduce with this regexp:
```
(a|b){0,1000}(a|b){0,1000}(a|b){0,1000}
```
To see the message truncate just resize your window or repeat the regexp a few times.
--
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/2244
$XDG_RUNTIME_DIR is the place where to put socket files these days.
It seems good practice to create a sub-directory as well, perhaps we
create more files there in the future.
The fallback to write in /tmp remains for the rare occasions where
$XDG_RUNTIME_DIR cannot be used.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2222
-- Commit Summary --
* prefer XDG_RUNTIME_DIR over /tmp for the socket
-- File Changes --
M src/socket.c (31)
-- Patch Links --
https://github.com/geany/geany/pull/2222.patchhttps://github.com/geany/geany/pull/2222.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/2222
I don't know if it's a limitation of Geany itself or some other library, so please accept my apologies if the issue is not related to Geany.
Many apps allow setting different font sizes, and Geany is not an exception. However, I miss the option to increase/decrease font sizes by 0.5 (which is possible with some other apps). For example, I use 9pt size for editor, and it's a bit too small, but 10pt is too large. Of course, it also depends on font family (some fonts don't need adjustment by 0.5pt to make them look "right"), but this feature would be useful with many font families.
I can manually enter font size 9.5 into Geany settings, and this value is accepted and saved, but actual font size is not changed. No matter if I enter 9.1 or 9.9, actual size is still 9.
--
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/2242
It would be nice to be able to set key bindings for line operations, at least for sorting.
--
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-plugins/issues/832
Project switching and opening using the Workbench plugin becomes possible with this PR in two different ways:
1. Choose _"Select/Unselect project"_ from the popup menu
1. Enable option _"Enable auto-open project by document"_ in the Workbench settings
Method 1 allows switching and opening a project by explicitly choosing _"Select/Unselect project"_ from the popup menu in the Workbench sidebar.
If method 2 is enabled then a project is automatically switched to/opened if a document belonging to the project is opened or activated. This functionality is suppressed as long as a project is explicitly selected by method 1.
:exclamation: **This PR requires https://github.com/geany/geany/pull/2234. So please do NOT merge it until the Geany-PR is merged.** :exclamation:
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/890
-- Commit Summary --
* Workbench: added support for project switching
-- File Changes --
M workbench/README (17)
M workbench/src/dialogs.c (28)
M workbench/src/idle_queue.c (6)
M workbench/src/idle_queue.h (3)
M workbench/src/plugin_main.c (30)
M workbench/src/popup_menu.c (59)
M workbench/src/sidebar.c (45)
M workbench/src/sidebar.h (1)
M workbench/src/wb_project.c (32)
M workbench/src/wb_project.h (2)
M workbench/src/workbench.c (156)
M workbench/src/workbench.h (6)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/890.patchhttps://github.com/geany/geany-plugins/pull/890.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-plugins/pull/890