Note: I have never used Perl 6 (and did my best to avoid Perl) so I largely don't know what I'm doing. There just are several open issues requesting this language and I believe Geany should support it. And even if this PR isn't perfect, it should be much easier for real Raku users to improve it once this PR is in (e.g. by providing better keywords or highlighting).
I based the keyword list on
https://github.com/Raku/vim-raku/blob/master/syntax/raku.vim
and also fixed one lexilla bug here
https://github.com/ScintillaOrg/lexilla/pull/76
Fixes #3054, fixes #3053, fixes #2456.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3169
-- Commit Summary --
* Add Raku (Perl 6) filetype support (lexer and ctags parser)
-- File Changes --
M ctags/Makefile.am (1)
A ctags/parsers/perl6.c (338)
M data/Makefile.am (1)
A data/filedefs/filetypes.raku (83)
M data/filetype_extensions.conf (1)
M meson.build (2)
M scintilla/Makefile.am (1)
A scintilla/lexilla/lexers/LexRaku.cxx (1637)
M scintilla/lexilla/src/Lexilla.cxx (1)
M scintilla/scintilla_changes.patch (1)
M src/filetypes.c (1)
M src/filetypes.h (1)
M src/highlighting.c (17)
M src/highlightingmappings.h (41)
M src/tagmanager/tm_parser.c (22)
M src/tagmanager/tm_parser.h (1)
M src/tagmanager/tm_parsers.h (3)
M tests/ctags/Makefile.am (1)
A tests/ctags/simple.raku (120)
A tests/ctags/simple.raku.tags (26)
M tests/meson.build (1)
-- Patch Links --
https://github.com/geany/geany/pull/3169.patchhttps://github.com/geany/geany/pull/3169.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3169
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3169(a)github.com>
Fedora 35
geany-1.38-1.fc35.x86_64
Bug: geany is turning the top open { bracket blue instead of the second open bracket #`{ blue when the first close bracket } is highlighted.
This bug really makes find missing closing brackets a pain in the neck!
```
sub GetWindows10Build() {
my $SubName = &?ROUTINE.name;
PrintRedErr( "$SubName not yet implemented\n" ); return;
#`{
multi line comments go here
}
}
```
--
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/3053
Hi all,
I am using Geany v1.37.1 in Win10 x64. Currently vertical scrolling is super fast. I need to reduce this. Please help. Thanks in advance.
--
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/2768
Is there a way to hide/exclude some type of files so that they are not showing in the Explorer? If no, it will be a useful feature.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1258
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/issues/1258(a)github.com>
When compiling on Linux with GCC 13 and `-Wincompatible-pointer-types`:
```
prjorg-sidebar.c: In function 'prjorg_sidebar_get_expanded_paths':
prjorg-sidebar.c:1565:16: warning: returning 'void **' from a function with incompatible return type 'gchar **' {aka 'char **'} [-Wincompatible-pointer-types[https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wincompatible-pointer-types]]
1565 | return g_ptr_array_free(expanded_paths, FALSE);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```
Apparently this will become an error by default with GCC 14 in 2024:
https://gcc.gnu.org/pipermail/gcc-cvs/2023-December/394351.htmlhttps://github.com/gcc-mirror/gcc/commit/9715c545d33b3a32ddc1ae817ba9356ade…
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1297
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/issues/1297(a)github.com>
For languages like Markdown tag manager is used to display an outline of the document in the sidebar but the generated tags aren't really meant for autocompletion where they don't make much sense. Without this patch typing a word from e.g. a heading of markdown invokes the autocompletion popup anywhere in the edited text which is quite annoying.
Apart from languages that use tags for the sidebar outline (ABC, asciidoc, bibtex, ini/conf, diff, docbook, latex, markdown, rest, txt2tags, HTML), there's also JSON where autocompletion doesn't really work because tags are generated for json strings such as keys but autocompletion doesn't work inside strings currently so when one types ", the following string doesn't get autocompleted.
This is how the current behavior looks like for LaTeX:
<img width="565" alt="Screenshot 2023-10-04 at 23 17 44" src="https://github.com/geany/geany/assets/713965/2c023c53-9f6c-4448-8…
and this is for Markdown:
<img width="601" alt="Screenshot 2023-10-04 at 23 13 55" src="https://github.com/geany/geany/assets/713965/c24056e5-fa59-444d-b…
I'm not sure if it's related to the changes made in this release or if it behaved this way before too but since it's quite annoying and the patch is hopefully a low-risk one, it could be worth considering for Geany 2.0.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3575
-- Commit Summary --
* Disable autocompletion for most non-programming/non-scripting languages
-- File Changes --
M src/editor.c (5)
M src/tagmanager/tm_parser.c (23)
M src/tagmanager/tm_parser.h (2)
-- Patch Links --
https://github.com/geany/geany/pull/3575.patchhttps://github.com/geany/geany/pull/3575.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3575
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3575(a)github.com>
The latest version (1.30) in PHP don't autocomplete **require**.
--
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/1436
This PR adds an option to hide the menubar at startup and a keybinding to toggle menubar visibility. Addresses #633.
Currently, there is no default keybinding set to toggle the menubar. This complicates reshowing the menubar if it is hidden at startup. A common key combination to toggle menubar visibility is `<Primary>m`, but that is already being used to toggle markers. Should the keybinding be reassigned? If not, what other keybinding should be used?
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2972
-- Commit Summary --
* <a href="https://github.com/geany/geany/pull/2972/commits/c2076abb31c4ffd44dbad845d3…">Add option to hide menubar on startup</a>
-- File Changes --
M doc/geany.txt (1)
M src/keybindings.c (11)
M src/keybindings.h (2)
M src/libmain.c (5)
M src/plugindata.h (2)
M src/ui_utils.c (2)
M src/ui_utils.h (1)
-- Patch Links --
https://github.com/geany/geany/pull/2972.patchhttps://github.com/geany/geany/pull/2972.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/2972