SF.net SVN: geany:[4345] trunk/src

ntrel at users.sourceforge.net ntrel at xxxxx
Tue Oct 20 15:45:08 UTC 2009


Revision: 4345
          http://geany.svn.sourceforge.net/geany/?rev=4345&view=rev
Author:   ntrel
Date:     2009-10-20 15:45:07 +0000 (Tue, 20 Oct 2009)

Log Message:
-----------
Fix typo GEANY_KEYS_GOTO_[NEXT|PREV]WORDSTART -> WORDPART.

Modified Paths:
--------------
    trunk/src/keybindings.c
    trunk/src/keybindings.h

Modified: trunk/src/keybindings.c
===================================================================
--- trunk/src/keybindings.c	2009-10-20 15:35:44 UTC (rev 4344)
+++ trunk/src/keybindings.c	2009-10-20 15:45:07 UTC (rev 4345)
@@ -420,9 +420,9 @@
 		GDK_End, 0, "edit_gotolineend", _("Go to End of Line"), NULL);
 	keybindings_set_item(group, GEANY_KEYS_GOTO_LINEENDVISUAL, NULL,
 		GDK_End, GDK_MOD1_MASK, "edit_gotolineendvisual", _("Go to End of Display Line"), NULL);
-	keybindings_set_item(group, GEANY_KEYS_GOTO_PREVWORDSTART, NULL,
+	keybindings_set_item(group, GEANY_KEYS_GOTO_PREVWORDPART, NULL,
 		GDK_slash, GDK_CONTROL_MASK, "edit_prevwordstart", _("Go to Previous Word Part"), NULL);
-	keybindings_set_item(group, GEANY_KEYS_GOTO_NEXTWORDSTART, NULL,
+	keybindings_set_item(group, GEANY_KEYS_GOTO_NEXTWORDPART, NULL,
 		GDK_backslash, GDK_CONTROL_MASK, "edit_nextwordstart", _("Go to Next Word Part"), NULL);
 
 	group = ADD_KB_GROUP(VIEW, _("View"), cb_func_view_action);
@@ -1922,10 +1922,10 @@
 		case GEANY_KEYS_GOTO_LINEENDVISUAL:
 			sci_send_command(doc->editor->sci, SCI_LINEENDDISPLAY);
 			break;
-		case GEANY_KEYS_GOTO_PREVWORDSTART:
+		case GEANY_KEYS_GOTO_PREVWORDPART:
 			sci_send_command(doc->editor->sci, SCI_WORDPARTLEFT);
 			break;
-		case GEANY_KEYS_GOTO_NEXTWORDSTART:
+		case GEANY_KEYS_GOTO_NEXTWORDPART:
 			sci_send_command(doc->editor->sci, SCI_WORDPARTRIGHT);
 			break;
 	}

Modified: trunk/src/keybindings.h
===================================================================
--- trunk/src/keybindings.h	2009-10-20 15:35:44 UTC (rev 4344)
+++ trunk/src/keybindings.h	2009-10-20 15:45:07 UTC (rev 4345)
@@ -239,8 +239,8 @@
 	GEANY_KEYS_GOTO_TOGGLEMARKER,
 	GEANY_KEYS_GOTO_NEXTMARKER,
 	GEANY_KEYS_GOTO_PREVIOUSMARKER,
-	GEANY_KEYS_GOTO_PREVWORDSTART,
-	GEANY_KEYS_GOTO_NEXTWORDSTART,
+	GEANY_KEYS_GOTO_PREVWORDPART,
+	GEANY_KEYS_GOTO_NEXTWORDPART,
 	GEANY_KEYS_GOTO_TAGDEFINITION,
 	GEANY_KEYS_GOTO_TAGDECLARATION,
 	GEANY_KEYS_GOTO_LINEENDVISUAL,


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list