When using insert custom date on MacOS X via keyboard shortcut (Alt+Shift+D) it's not inserting on cursor position, but about at the place of last click (or where cursor was positioned when loading file). When clicking with mouse on new position insertion seems to work at this place.
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/694
Geany is still using GTK2 according to the official Geany.org homepage. Should Geany update to GTK3? I suggest this because occasionally I get odd (and non-reproducible) GUI-glitches in Geany.
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/644
Closes #622.
---
While a very common keybinding for this would be `Alt+Return`, I didn't set any default because:
1. `Alt+Return` might be in use by a plugin already, and Geany would steal it;
2. Properties don't seem to be important enough to me to really need a default keybinding.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/652
-- Commit Summary --
* Allow to set a keybinding for File->Properties
-- File Changes --
M data/geany.glade (2)
M src/callbacks.c (2)
M src/callbacks.h (2)
M src/keybindings.c (5)
M src/keybindings.h (1)
M src/ui_utils.c (2)
-- Patch Links --
https://github.com/geany/geany/pull/652.patchhttps://github.com/geany/geany/pull/652.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/652
Hello.
When someone is using splitwindow plugin and the splitwindow editor has the focus, the status bar still shows the info about the document opened in the main editor.
We've have talked about this on the mailing list. I was trying to fix this but I need [ui_update_statusbar](https://github.com/geany/geany/blob/master/src/ui_util… to be added to the API so that it is accessible from plugins.
I'll try to add it on my local clone to see if it works and, if so, I'll ellaborate a PR for fixing this.
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/720
This is rquired to enable the plugin to call g_module_make_resident() within
its geany_load_module(). This must be done if the plugin registers new
GTypes within that function.
plugin_module_make_resident() doesn't work because it's not an allowed API
function to call from there. Simply allowing it doesn't suffice because
internally the built-in plugin loader isn't fully set up yet:
plugin->proxy_data isn't set to the GModule at this point (by design), and
plugin_module_make_resident() requires that to be set.
This changes a public API, but it is unreleased so far, so not a problem (by
definition).
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/719
-- Commit Summary --
* plugins: pass GModule * to geany_load_module()
-- File Changes --
M plugins/demoplugin.c (2)
M plugins/demoproxy.c (2)
M src/plugindata.h (3)
M src/plugins.c (4)
-- Patch Links --
https://github.com/geany/geany/pull/719.patchhttps://github.com/geany/geany/pull/719.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/719
This has been driving me nuts for a while but I finally figured it out. If you have:
* keybindings.conf
* edit_gotolinestart=<Alt>Home
* edit_gotolineend=<Alt>End
* edit_gotolinestartvisual=Home
* **edit_gotolineendvisual=End**
* geany.conf
* show_line_endings=true
Then hitting `end` on the wrapped part of a long line does a _line-down_ and not an _end_. If you **set show_line_endings=true** then `end` works as expected and desired.
I'm running Geany 1.25 from the "geany-dev" PPA on Linut Mint 17 but I'm pretty sure this bug has been present thing the whole "gotoline*visual" thing was fixed.
Steps to reproduce:
1. Set config as above
2. Create a file with long lines
3. Go to the first line of a wrapped line, hit `home` and `end` and they should stay on that line as expected
4. Go to the second (last?) line of a wrapped line, `home` should work but `end` should go to the next line instead of the end of this line
5. Set **show_line_endings=false**
6. `end` should not work as expected per the keymap.
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/712
I added some file extensions. I do a lot of programming and I noticed that some files are not auto-detected by Geany. For instance, Assembly source code files for the 8051 use the *.a51 file-extension which is not included in Geany. This should help fix some of those issues.
I also added "Manpage" and "README". In my opinion, highlighting features for manpages should be added. My commit should help to start adding support, if my commit is accepted.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/718
-- Commit Summary --
* Create filetypes.Manpage.conf
* Update filetype_extensions.conf
-- File Changes --
M data/filetype_extensions.conf (28)
A data/filetypes.Manpage.conf (30)
-- Patch Links --
https://github.com/geany/geany/pull/718.patchhttps://github.com/geany/geany/pull/718.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/718