can not take screen-shot while menu open or toolbar open
ie. ALL system key interaction is suspended
but wait, there is a screenshot, taken with delay
not all menu items have key-bindings
did I mention that key-bindings do not update until Geany is restarted
'Build Toolbar' does not match the edited 'Build Menu'
<Primary> ??? same as the control key but why <Primary> ?
'Make Custon Target' even when edited asks for user input; that's OK, I just used the empty line at the bottom but no key-binding available
Problem: I am wanting custom make commands available to ALL my projects. I have a set of make commands that are the same for ALL of my projects.
No I do not use the default name for make. I use my project 'prefix.mak'. Much easier to keep track of the makefiles instead of the default - 'makefile'.
example:
Test.mak
Test.h
Test.c
Test_1.c
Test_fx.c
my make commands:
F8 Make (Make All) make -f %e.mak
F9 Clean (Make Object) make -f %e.mak clean
?? Real Clean (empty) make -f %e.mak realclean
F5 Execute
S-F8 Compile
S-F9 Build
otherwise LOVING IT! reminds me of TurboC I used in DOS way back...
screen shots:
![geany make](https://user-images.githubusercontent.com/31071746/30873599-c94ec648-…
![geany build menu](https://user-images.githubusercontent.com/31071746/30873644-e9baf1fe-…
![geany build toolbar](https://user-images.githubusercontent.com/31071746/30873689-18d3dd…
--
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/1614
I sometimes try to open a file from a terminal and pass the wrong path. Asking the user to confirm the new file solves this problem, they can easily press escape to cancel the new document.
Occasionally I might use a glob that turns out to be wrong too, creating many unwanted new documents. So I made cancelling a new document ignore any remaining new filenames passed to Geany.
![image](https://user-images.githubusercontent.com/1107820/67089763-58e56200-f1a0-11e9-9dd3-133a0b0ac3b7.png)
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2369
-- Commit Summary --
* Ask whether to open new files from command-line
* If new document cancelled, ignore remaining new filenames
-- File Changes --
M src/libmain.c (24)
-- Patch Links --
https://github.com/geany/geany/pull/2369.patchhttps://github.com/geany/geany/pull/2369.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/2369
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3165
-- Commit Summary --
* Add typescript ctags parser
-- File Changes --
M ctags/Makefile.am (1)
A ctags/parsers/typescript.c (2139)
M data/filedefs/filetypes.TypeScript.conf (1)
M meson.build (1)
M src/tagmanager/tm_parser.c (29)
M src/tagmanager/tm_parser.h (1)
M src/tagmanager/tm_parsers.h (3)
M tests/ctags/Makefile.am (1)
A tests/ctags/simple.ts (227)
A tests/ctags/simple.ts.tags (107)
M tests/meson.build (1)
-- Patch Links --
https://github.com/geany/geany/pull/3165.patchhttps://github.com/geany/geany/pull/3165.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3165
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3165(a)github.com>
I got this patch more than year ago, I would like to mention the original author but I don't remember it, got the patch from unmerged PR in geany repo and merged with master locally, but is not in the PR history or I couldn't find anymore. For my job is very important to know in which symbol I have the cursor, and from more than a year I am using this patch beacuse highlight in symbol list the symbol where I have the cursor, I can guarantee that is working perfectly, without affecting performance or stability, and is improving the user experience, that much that anytime I am updating my Geany I am applying this patch. I would like to suggest include in master for other users get advantages of it.
Thanks
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3239
-- Commit Summary --
* Highlight function in symbol window from cursor
* Win32 support
* Doc update
* Merge branch 'master' into highlight_symbol_from_cursor_position
-- File Changes --
A Win32/INSTALL.w32 (30)
A Win32/geany_dark_GTK.zip (0)
A Win32/geany_symbol_highlight-1.37.1.zip (0)
A Win32/official_installers.zip (0)
M src/editor.c (9)
M src/symbols.c (89)
M src/symbols.h (6)
M src/ui_utils.c (36)
M src/ui_utils.h (2)
-- Patch Links --
https://github.com/geany/geany/pull/3239.patchhttps://github.com/geany/geany/pull/3239.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3239
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3239(a)github.com>
In certain places (window title, some dialog titles, tab bar, ...) we shorten the document name to 30 or sometimes 100 characters by removing characters in the middle of the document name and replace it by "…".
This was initially introduced by a request in https://sourceforge.net/p/geany/bugs/298/.
On the mailing list (https://lists.geany.org/users/2019-March/010970.html), it was requested to disable this feature.
One possible implementation could add two new "Various preferences" to make the currently used constants (30 and 100) configurable, with `0` as disabling the feature and add some documentation for these settings.
--
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/2112
Correct me if I am wrong be it seams that open file names max display length is essentially hard coded to 30. So my feature request is to be able to set this number as a preference.
what I have found if I am reading the code correctly. The code related to this is in [document.c](https://github.com/geany/geany/blob/master/src/document.c#L412)
In this function, it checks for the length you want and defaults to 30 if it is lower than 0
**document_get_basename_for_display**
```
if (length < 0)
length = 30;
base_name = g_path_get_basename(DOC_FILENAME(doc));
short_name = utils_str_middle_truncate(base_name, (guint)length);
```
and this function simply just calls it with `-1`. I believe this is where a preference should be referenced instead
**document_update_tab_label**
```
short_name = document_get_basename_for_display(doc, -1);
```
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3344
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3344(a)github.com>
Hi, the dark blue color in my terminal is barely legible with my theme. I've looked everywhere and I can't find a way to change the color to something more contrasted.
![terminalcolor](https://user-images.githubusercontent.com/5252797/84933855-59b1f900-b08b-11ea-996d-678cb9e1c5b5.png)
--
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/2530
Add saving project state by changed, please.
--
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/1334
Hello community.
I'm Maddalena, a first-year high school student.
At school I am learning Java with Geany.
To practice, I installed Geany 1.38 on my MacBook Pro M1 MacOS Big Sur
I have a problem and I don't know how to fix it:
"The operation could’t be completed. Unable to locate a Java Runtime that support javac. Please visit http://www.java.com/ per information on installing java"
From the java site I downloaded java and then installed it but it doesn't work. When I run the Geany compiler it doesn't work.
Please help me and tell me step by step what to do.
Thank you very much.
<img width="836" alt="Schermata 2022-11-09 alle 21 39 00" src="https://user-images.githubusercontent.com/117862880/200937130-9736aabb-14da…">
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3331
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3331(a)github.com>
**Environment details:**
GNOME / Wayland
Dual monitors
**Distro**: Fedora 33
**GNOME Version**: 3.38.1
**Geany Version**: 1.37
**Detailed description:**
When opening the right click menu under the circumstances described below, the menu consistently anchors itself at X coordinate 0 (Y coordinate is correctly set) instead of the actual X coordinate of the cursor.
**Steps to recreate:**
- In a dual-monitor setup, use the primary monitor in landscape mode and the secondary monitor in portrait mode.
- In a wayland session of GNOME open Geany and right click the input area, and the resulting menu will open the X coordinate 0, not the X coordinate of the cursor, though the Y coordinate is set correctly .
**Intended functionality:**
- Menu anchor coordinate inherits the X **and** Y coordinates of the cursor
--
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/2643