Re: [Geany-Devel] Geany plugin maintenance

2014-03-25 Thread Federico Reghenzani
On Tue, Mar 25, 2014 at 2:14 AM, Lex Trotman ele...@gmail.com wrote: On 25 March 2014 11:48, Shankhoneer Chakrovarty shankhon...@gmail.com wrote: Hi Frederico, I've started to work on codenav plugin one week ago :) Can you please update the MAINTAINERS file? Only update the

[Geany-Devel] Plugin-Maintainer: Please review PR and comment on them/merge them

2014-03-25 Thread Frank Lanitz
Dear plugin-developers, On https://github.com/geany/geany-plugins/pulls there are quiet a number of open pull request, which might would fit good into upcoming 1.24 release. In special https://github.com/geany/geany-plugins/pull/125 having a number of fixes for different plugins inside. Please

Re: [Geany-Devel] Geany plugin maintenance

2014-03-25 Thread Frank Lanitz
On Tue, 25 Mar 2014 09:30:42 +0100 Federico Reghenzani federico@reghe.net wrote: Yes, no problem, I thought that I could not auto-add me to MANTAINERS file, but if I can, I'm happy to contribute maintaining that plugin. I'll send the email to Frank soon :) Applied. And now, time to get

Re: [Geany-Devel] Looking for features for a SQL plugin

2014-03-25 Thread Frank Lanitz
On Mon, 24 Mar 2014 09:47:19 +0100 Frank Lanitz fr...@frank.uvena.de wrote: A often wished feature at our boothes at e.g. Chemnitzer Linux Tage were to have some kind of a SQL plugin for Geany, supporting executing queries at the database. As I'm also looking for something like this, I'm

[Geany-Devel] 'shiftcolumn' plugin - keyboard shortcut conflict

2014-03-25 Thread Shankhoneer Chakrovarty
Hi, 'shiftcolumn' is one of the orphaned plugin which I have decided to work on. shiftcolumn's default shortcut key to move the selected text to right is Primary0 which conflicts with Zoom reset, making the plugin useless to move the text right unless for every move the user clicks Tools-Shift

Re: [Geany-Devel] 'shiftcolumn' plugin - keyboard shortcut conflict

2014-03-25 Thread Shankhoneer Chakrovarty
Thanks Lex. It is actually preferable that plugins do not have default keybindings. It is not known what combination plugins will be loaded and so it is not known what combination of keybindings might clash, and it is not known what keybindings a user might define themselves that can clash.

Re: [Geany-Devel] 'shiftcolumn' plugin - keyboard shortcut conflict

2014-03-25 Thread Steven Blatnick
The shortcut code would look something like this: enum { KB_PLUGIN, KB_GROUP }; ... key_group = plugin_set_key_group(geany_plugin, plugin_name_keyboard_shortcut, KB_GROUP, NULL); keybindings_set_item(key_group, KB_PLUGIN,

Re: [Geany-Devel] 'shiftcolumn' plugin - keyboard shortcut conflict

2014-03-25 Thread Matthew Brush
On 14-03-25 04:19 PM, Shankhoneer Chakrovarty wrote: Thanks Lex. It is actually preferable that plugins do not have default keybindings. It is not known what combination plugins will be loaded and so it is not known what combination of keybindings might clash, and it is not known what