Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sat, 29 Mar 2014 18:48:31 UTC
Commit: bc23c7ae6b762c6090357f24064b8a4aff2ea8e4
https://github.com/geany/geany-plugins/commit/bc23c7ae6b762c6090357f24064b8…
Log Message:
-----------
Merge pull request #132 from shankhs/master
Removed default keybinding
Modified Paths:
--------------
shiftcolumn/ChangeLog
shiftcolumn/README
shiftcolumn/src/shiftcolumn.c
Modified: shiftcolumn/ChangeLog
4 files changed, 4 insertions(+), 0 deletions(-)
===================================================================
@@ -1,3 +1,7 @@
+2013-03-28 Shankhoneer Chakrovarty <shankholove(a)gmail.com>
+
+ * src/shiftcolumn.c: Removed default keybinding
+
2011-04-25 Frank Lanitz <frlan(a)frank.uvena.de>
* src/shiftcolumn.c: Fix a maybe uninitialized usage of a variable.
Modified: shiftcolumn/README
5 files changed, 2 insertions(+), 3 deletions(-)
===================================================================
@@ -5,7 +5,7 @@ Shift Column Plugin
About
-----
-This plugin allows you to move blocks of text horizontally
+This plugin allows you to move blocks of text horizontally in left or right direction skipping one character at a time.
Requirements
------------
@@ -32,8 +32,7 @@ Usage
-----
After installed successfully, load the plugin in Geany's plugin manager
and a new menu item in the Tools menu will appear. Alternatively, you can
-assign a keyboard shortcut in Geany's preferences dialog. By default
-the mappings are to <Ctrl>9 and <Ctrl>0
+assign a keyboard shortcut in Geany's preferences dialog.
Known issues
Modified: shiftcolumn/src/shiftcolumn.c
4 files changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -397,9 +397,9 @@ void plugin_init(G_GNUC_UNUSED GeanyData *data){
/* setup keybindings */
keybindings_set_item(plugin_key_group, KB_SHIFT_LEFT, kb_shift_left,
- GDK_9, GDK_CONTROL_MASK, "shift_left", _("Shift Left"), menu_item_shift_left);
+ 0, GDK_CONTROL_MASK, "shift_left", _("Shift Left"), menu_item_shift_left);
keybindings_set_item(plugin_key_group, KB_SHIFT_RIGHT, kb_shift_right,
- GDK_0, GDK_CONTROL_MASK, "shift_right", _("Shift Right"), menu_item_shift_right);
+ 0, GDK_CONTROL_MASK, "shift_right", _("Shift Right"), menu_item_shift_right);
}
void plugin_cleanup(void){
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: shankhs <shankholove(a)gmail.com>
Committer: shankhs <shankholove(a)gmail.com>
Date: Fri, 28 Mar 2014 19:15:41 UTC
Commit: caacfa058b68d86559c96d2b3c522270064c77cf
https://github.com/geany/geany-plugins/commit/caacfa058b68d86559c96d2b3c522…
Log Message:
-----------
updated Changelog and README
Modified Paths:
--------------
shiftcolumn/ChangeLog
shiftcolumn/README
Modified: shiftcolumn/ChangeLog
4 files changed, 4 insertions(+), 0 deletions(-)
===================================================================
@@ -1,3 +1,7 @@
+2013-03-28 Shankhoneer Chakrovarty <shankholove(a)gmail.com>
+
+ * src/shiftcolumn.c: Removed default keybinding
+
2011-04-25 Frank Lanitz <frlan(a)frank.uvena.de>
* src/shiftcolumn.c: Fix a maybe uninitialized usage of a variable.
Modified: shiftcolumn/README
5 files changed, 2 insertions(+), 3 deletions(-)
===================================================================
@@ -5,7 +5,7 @@ Shift Column Plugin
About
-----
-This plugin allows you to move blocks of text horizontally
+This plugin allows you to move blocks of text horizontally in left or right direction skipping one character at a time.
Requirements
------------
@@ -32,8 +32,7 @@ Usage
-----
After installed successfully, load the plugin in Geany's plugin manager
and a new menu item in the Tools menu will appear. Alternatively, you can
-assign a keyboard shortcut in Geany's preferences dialog. By default
-the mappings are to <Ctrl>9 and <Ctrl>0
+assign a keyboard shortcut in Geany's preferences dialog.
Known issues
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).