Geany 1.38 on MacOS:
According to the annotation in the menu, Edit/Format/ToggleCase is assigned to the shortcut Option-Command-U. However, pressing this key combination does not have any observable effect, while selecting "ToggleCase" from the menu works.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-osx/issues/52
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-osx/issues/52(a)github.com>
From time to time I'd find it useful to set the plugin folder where geany is searching for *.so could be set via CLI option at runtime and independent from its geany.conf file.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3775
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3775(a)github.com>
how to send the full path of the currently opened file to the clipboard, and perhaps just the name of the file, or just the path
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/discussions/3773
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/repo-discussions/3773(a)github.com>
I ran into a little problem when testing my pinner plugin. When using document_get_current(), the 'file_name' member was NULL even if the value returned by document_get_current() was not NULL and 'is_valid' was 1.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3770
-- Commit Summary --
* Return NULL from document_get_current() if document is 'untitled'
-- File Changes --
M src/document.c (11)
-- Patch Links --
https://github.com/geany/geany/pull/3770.patchhttps://github.com/geany/geany/pull/3770.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3770
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3770(a)github.com>
From what I can tell, as I'm just learning the Geany API and gtk3, I would now need to
1. Create a linked list using GSList() to store each item that's pinned
2. Before pinning, check to see if document is already in the list
3. Other stuff after that.
I'm a bit lost on how to pass some values as functions though. I'm not too experienced with callback functions and some of my experiments have gone terribly awry.
I'll ask in a line comment...
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/1308
-- Commit Summary --
* Add Pinner plugin
-- File Changes --
A pinner/pinner.c (88)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/1308.patchhttps://github.com/geany/geany-plugins/pull/1308.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1308
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1308(a)github.com>
Steps to reproduce the issue
make the tab-title of a focused tab bold (see below in "Remark I" how this works)
open many tabs
tab-browse to the left or to the right
Result
Other tabs that are not in focus are moving a little bit to the side
Expectation
Other tabs should not move at all
Remark I
If geany.css does not exist in .config/geany, type this code in the terminal:
cp /usr/share/geany/geany.css .config/geany/
Open geany.css that is located in .config/geany/
Add at the end of the document those lines:
```
notebook tab:checked label {
font-weight:bold;
}
```
Save the document, close Geany, open Geany
Remark II
I use an ePaper-display in that way that only the black color is on the screen.
So, after an installation of Geany, when many tabs are open, I can't see at all which tab is in focus and which tab was changed, but not saved.
I add in geany.css in `geany-document-status-changed` the following code to see which tab was changed but not saved:
`font-style:oblique;`
And I delete there the color.
And this is what I use in geany.css for the tab that is in focus:
```
notebook tab:checked label {
color:white;
background:black;
}
```
I would prefer to use bold, but then some tabs are a little bit moving while tab-browsing.
Geany 1.38
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3771
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3771(a)github.com>
my xsession error file is flooding with this warnings/errors, i mean hunderds
```
(geany:14905): Gtk-CRITICAL **: 21:00:38.936: _gtk_css_image_get_surface: assertion 'surface_height > 0' failed
(geany:14905): Gtk-CRITICAL **: 21:00:38.936: _gtk_css_image_get_concrete_size: assertion 'default_width > 0' failed
```
Next to those these are also in xsession related to geany:
```
(geany:14815): Gtk-WARNING **: 20:58:15.487: Negative content height -5 (allocation 1, extents 3x3) while allocating gadget (node entry, owner GtkEntry)
(geany:14815): Gtk-WARNING **: 20:58:15.487: Negative content width -1 (allocation 1, extents 1x1) while allocating gadget (node scrolledwindow, owner GtkScrolledWindow)
(geany:14815): Gtk-WARNING **: 20:58:15.487: Negative content width -17 (allocation 1, extents 9x9) while allocating gadget (node entry, owner GtkEntry)
(geany:14815): Gtk-WARNING **: 20:58:15.487: gtk_widget_size_allocate(): attempt to allocate widget with width 13 and height -23
(geany:14815): Gtk-CRITICAL **: 20:58:15.487: gtk_box_gadget_distribute: assertion 'size >= 0' failed in GtkScrollbar
```
This is on EndeavourOS xfce (Arch linux like Manjaro)
Geany version 2.0 non git version
Using GTK+ v3.24.41 and GLib v2.78.4 runtime libraries
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3768
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3768(a)github.com>
I'm opening files from Windows Explorer with `Open with Geany`. I found that after a certain number of files are opened, it will launch new Geany instances. Each instance has duplicated opened files with the others, but not all opened files are duplicated. This indicated that there is a threshold for the maximum number of files that can be opened in a single instance of Geany. Or, is it a bug?
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/discussions/3754
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/repo-discussions/3754(a)github.com>