In the Message Window is a selector that scrolls through "Status" "Compiler" "Messages" "Scribble" "Terminal" "Tasks". In Geany 1.32 for Fedora 27, the text size/spacing of this scroller is too large, and apparently not changeable. When run from the command line, a GTK error is produced, making me suspect that this is a GTK-related bug. Is there any chance of it being fixed on Geany's end?
Example error:
(geany:21820): Gtk-WARNING **: Allocating size to GtkScrollbar 0x559bda5fd300 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate?
More errors are generated if menus are opened within Geany.
--
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/1723
Hi there,
A minor problem that comes up a lot when I use Geany is wanting to open additional documents in a particular window. Opening a file with Geany via command line will open it in the first available Geany process—ostensibly the first process to try to create the socket file. This instance's editor window usually isn't the one I want and is typically in another workspace. As a result, my "main" Geany window has over thirty open documents in it right now.
I can often mitigate this problem using the `--new-instance` flag to just pop open a new editor, but this leads to lots of Geany windows, quickly.
It would be good if Geany could organize its sockets so that more than the first open instance could be communicated with. Ideally, the most recently focused editor would accept document open commands.
If that isn't an option, I often find myself poking around in the Geany Terminal for files I want to edit (usually with `grep` or `find`). Once I have a list, though, I have no good way of opening those documents. Simply calling ``` geany `find . -name 'foo.bar'` ``` will open them in the first process. What would be cool is if I could type `open` or `edit` instead, to open them in the current instance.
I think the terminal feature might actually be more difficult to implement than proper IPC. I've considered implementing it myself, but didn't want to just drop that feature on you as a big pull request. My thoughts:
- We could tackle multiple-instance communication by allowing successive instances to listen on the existing socket, or just having them create sequential new sockets. I prefer the former.
- However we handle that, we will want to add a `socket_get_focus_time` (or similar) to look up how recently the editor was used.
- If we put multiple listeners on a socket, we'll need to tag their responses with a UID (eg, their PID).
- In this case, I'd probably just call the routine something like `socket_identify_instances`.
- Tracking the focus timestamp is as simple as updating a global in each process's `set-focus` or `notify::is-topmost` event.
- Once we've iterated all sockets or all responses, we would request the one with the latest (highest) timestamp to open the given files.
- Again, if we had multiple instance on one socket, we'd need to tag the request with a PID or other UID from the timestamp call.
I believe this change isn't all that complicated, and might be interested in making it if the team doesn't have any other plans. Let me know.
--
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/1727
Hello please..
I have on linux Pluma bash script for save file what when i save the file that script create file with a filename.ver and save data with counting of save file...
Its possible make it in variable setting and in autosave or manual save can be created this files with versions? I dont want use git but only just file version without use git/svn etc...
for example...
I've file "index.php" and this file was been 158x saved... In file "index.php.ver" will be saved
`<?php
$version_index.php = 158;
`
code must be same as original file...
Thank you
--
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/1730
Reload most of Geany's configuration files without restarting, as menu item "Tools"->"Reload Configuration" or ```geany.reload_configuration()``` [from GeanyPy](https://geanypy.readthedocs.io/en/latest/api.html#geany.reload_configuration).
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/653
-- Commit Summary --
* GeanyLua: Add filetype to set in geany.newfile()
* GeanyLua: Add function geany.reloadconf() (reload most of Geany's configuration files without restarting, as menu item Tools->Reload Configuration)
-- File Changes --
M geanylua/docs/geanylua-ref.html (45)
M geanylua/glspi_app.c (36)
M geanylua/glspi_doc.c (17)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/653.patchhttps://github.com/geany/geany-plugins/pull/653.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-plugins/pull/653
Hi, I'm in a programming class and I'm using Geany to do Python work. When I tried to do the "bicycles.py" exercise, I got the following error when executing; " ' . ' is not recognized as an internal or external command, operable program or batch."
this was the list:
bicycles = ['trek', 'cannondale', 'redline', 'specialized',]
print(bicycles)
Please help!!!
--
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/1751
I represent your attention AutoIt support, it result [Issues #967](https://github.com/geany/geany/issues/967)
P.S. au3.tags ready.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/1017
-- Commit Summary --
* Add AutoIt syntax highlighting
-- File Changes --
M data/Makefile.am (3)
A data/filedefs/filetypes.autoit (98)
M data/filetype_extensions.conf (1)
M scintilla/Makefile.am (1)
A scintilla/lexers/LexAU3.cxx (910)
M scintilla/scintilla_changes.patch (4)
M scintilla/src/Catalogue.cxx (1)
M src/filetypes.c (1)
M src/filetypes.h (1)
M src/highlighting.c (9)
M src/highlightingmappings.h (35)
-- Patch Links --
https://github.com/geany/geany/pull/1017.patchhttps://github.com/geany/geany/pull/1017.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/1017