Everything is easy on Linux, but I'm using Windows. I tried `gtk-3.0/settings.ini` but it doesn't work.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/discussions/3856
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/repo-discussions/3856(a)github.com>
Please could **Geany** highlight the **var** keyword in Java?
![Var](https://github.com/geany/geany/assets/7548378/0de3deb0-2230-4906-b54c-18c7e725bf2d)
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3854
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3854(a)github.com>
While working on [reproducible builds](https://reproducible-builds.org/) for [openSUSE](https://en.opensuse.org/openSUSE:Reproducible_Builds), I found that our `glfw` package varies in every build since the upgrade to geany-2.0
I extracted this minimal reproducer:
```bash
cat > test2.c <<EOF
typedef struct {
struct
{
} __value32;
} __atomic_wide_counter;
EOF
for i in 1 2 ; do geany -g glfw.c.tags test2.c ; md5sum glfw.c.tags ; done | sort -u | wc -l
2
```
The output differs thusly:
```diff
-__value32�64�__atomic_wide_counter�0�__anonceed23430108::anon_struct_1
+__value32�64�__atomic_wide_counter�0�__anone35807a60108::anon_struct_1
```
I think, there is the same problem with anon unions.
Please make output deterministic.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3717
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3717(a)github.com>
In addition to scope, anonymous type can appear also inside var_type which should be renamed as well.
Fixes #3717.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3785
-- Commit Summary --
* Rename both scope and var_type of anonymous types
-- File Changes --
M src/tagmanager/tm_ctags.c (40)
M tests/ctags/Makefile.am (1)
A tests/ctags/nested_anon.c (5)
A tests/ctags/nested_anon.c.tags (6)
M tests/meson.build (1)
-- Patch Links --
https://github.com/geany/geany/pull/3785.patchhttps://github.com/geany/geany/pull/3785.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3785
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3785(a)github.com>
Eliminates a warning on newer glib versions. Adds a fallback on older versions.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/1334
-- Commit Summary --
* projectorganizer: Use g_pattern_spec_match_string() instead of g_pattern_match_string()
-- File Changes --
M projectorganizer/src/prjorg-project.c (2)
M projectorganizer/src/prjorg-sidebar.c (4)
M projectorganizer/src/prjorg-utils.c (4)
M projectorganizer/src/prjorg-utils.h (4)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/1334.patchhttps://github.com/geany/geany-plugins/pull/1334.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1334
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1334(a)github.com>
When running Geany (v1.38) from the terminal with the ***Line Operations*** (AKA `lineoperations`) plugin enabled, Geany issues the string `Value: 0` to the terminal. This almost looks like a return value, but it appears as soon as Geany is launched (not when it terminates).
I searched the Geany and the Geany Plugins documentation and did not find an explanation for the meaning of this value or an official way to instruct Geany or the Plugin to suppress it. I did find that redirecting Geany's standard output to `/dev/null` did hide the seemingly undocumented message: `geany > /dev/null`
Is this message intentional or a bug? If it's intentional, what is the meaning? Can it be added to the documentation (or did my search simply not find it)? Is there an option to suppress it? Can one be added?
See also: https://github.com/geany/geany/issues/3822
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1322
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/issues/1322(a)github.com>