Hi.
I would like to have a button or shortcut that lets me filter the files I see in the open file pane by pressing the first letter. I have ~1000 files open and I am very happy to see that the editor can handle that many files I just need a bit of help from the UI in order to jump to the right file.
Thank you for creating the best editor for coding in Vala.
Cheers
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3078
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3078(a)github.com>
This is my second attempt on the LSP API as originally proposed by #3571.
I changed several things:
1. I renamed the struct `Lsp` to `PluginExtension` - there's nothing LSP-specific in this interface and it could be used by other plugins too (or possibly extended in the future if some plugins wanted to provide another functionality, we could extend this API).
2. I reduced the number of functions in the API to the absolute minimum and tried to do as much as possible in the plugin itself.
3. For this PR I removed the API related to the sidebar symbol tree - this one requires most changes on the Geany side and possibly more discussion and I don't want to block this PR by it. One possible alternative is also just keep using TM for the symbol tree, ignoring the symbols provided by LSP (the symbol tree is the least problematic part of TM IMO and could stay the way it is). I'll post the extra patches to allow sidebar symbols in a separate PR.
I also updated the combined Geany+LSP plugin at https://github.com/techee/geany-lsp to use the new API and also to work even when compiled against unmodified Geany. This is quite clumsy, however - to avoid conflicts between Geany's TM implementation and the plugin, it requires disabling TM by adding
```
[settings]
tag_parser=
```
to the filetype config file of the affected filetypes, basically disabling all TM features. It also requires separate keybindings for e.g. tag goto or autocompletion instead of re-using the Geany ones.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3849
-- Commit Summary --
* Add interface used by plugins to replace some Geany functionality with their own implementation
* Add Geany code delegating autocompletion to plugins
* Add Geany code delegating calltips to plugins
* Add Geany code delegating symbol goto to plugins
* Add Geany code delegating keyword highlighting to plugins
-- File Changes --
M meson.build (3)
M plugins/geanyplugin.h (1)
M src/Makefile.am (2)
M src/document.c (4)
M src/editor.c (34)
M src/keybindings.c (13)
A src/pluginextension.c (141)
A src/pluginextension.h (76)
M src/symbols.c (11)
M src/symbols.h (2)
-- Patch Links --
https://github.com/geany/geany/pull/3849.patchhttps://github.com/geany/geany/pull/3849.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3849
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3849(a)github.com>
For details, check the individual commit messages.
I suspect this is a result of https://github.com/geany/geany/pull/3891 and some different timings of when the affected functions get called. I haven't investigated the exact reasons, the extra added checks are probably just fine.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3921
-- Commit Summary --
* Fix runtime warning when opening Geany without open files
* Fix runtime warning when closing project to a session without open files
-- File Changes --
M src/document.c (6)
-- Patch Links --
https://github.com/geany/geany/pull/3921.patchhttps://github.com/geany/geany/pull/3921.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3921
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3921(a)github.com>
I opened a ruby on rails project in Geany and tried to edit an .erb file, but I noticed that there is no syntax highlight support for this type of file, which appears with all white text.
![image](https://github.com/user-attachments/assets/27ec3b40-09d9-414d-980f-3bc6ed3fc7b7)
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3928
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3928(a)github.com>
When I define new colors for the generated html, so fg_color and bg_color, in addition I would like to add colors for the html anchor. From the plugin help I know that only the above mentioned colors can be defined.
Is there a way to add something like ah_color or is this a feature request?
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1369
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/issues/1369(a)github.com>
Previously, a console window is shown in background when geany.exe is executed. This change fixes the above issue by specifying _windows_ subsystem type.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3811
-- Commit Summary --
* meson: Prevent showing console after running geany in Windows
-- File Changes --
M meson.build (3)
-- Patch Links --
https://github.com/geany/geany/pull/3811.patchhttps://github.com/geany/geany/pull/3811.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3811
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3811(a)github.com>
This should make it easier to find the links to external resources.
Looks like:
![Screenshot_2024-07-07_15-25-53](https://github.com/geany/www.geany.org/assets/617017/8e2a0079-41c2-4e8f-9c8d-545023c43235)
You can view, comment on, or merge this pull request online at:
https://github.com/geany/www.geany.org/pull/53
-- Commit Summary --
* Add Github, Mastodon and Matrix icons to footer
-- File Changes --
A geany/static/img/github.svg (1)
A geany/static/img/mastodon.svg (3)
A geany/static/img/matrix.svg (9)
M geany/templates/skel.html (5)
-- Patch Links --
https://github.com/geany/www.geany.org/pull/53.patchhttps://github.com/geany/www.geany.org/pull/53.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/www.geany.org/pull/53
You are receiving this because you are subscribed to this thread.
Message ID: <geany/www.geany.org/pull/53(a)github.com>
- OS: Linux Mint 21.3
- Geany 1.38 "Sulamar" (built on or after 2021-10-14) Using GTK+ v3.24.33 and GLib v2.72.4 runtime libraries
I think I encountered this before, but didn't know how to reproduce it. I'm pretty sure it only happened before when I pressed shift, so the steps below *may* be the only time it crashes:
A secret combo of keys crashes Geany:
- Save this file as .BAS
- Set highlighter to PASCAL
- click after print e
- press enter
- press '
- press spacebar
- press shift+6 (caret)
*If you don't press spacebar it doesn't happen
*If you wait too long to press caret, it doesn't happen :confused:
- but if you press backspace then quickly enter a caret, the crash does happen.
Related issues
- #2841 (not sure if related)
[DIM_TYPES.BAS.zip](https://github.com/user-attachments/files/16321882/DIM_T…
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3927
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3927(a)github.com>
Is it possible? I set up my favorite color scheme for the editor, but the rest of UI is very bright "black-on-white".
--
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/2928