SF.net SVN: geany:[3483] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Sun Jan 18 18:19:09 UTC 2009


Revision: 3483
          http://geany.svn.sourceforge.net/geany/?rev=3483&view=rev
Author:   eht16
Date:     2009-01-18 18:19:09 +0000 (Sun, 18 Jan 2009)

Log Message:
-----------
Reorder some keybindings.

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-01-18 18:18:38 UTC (rev 3482)
+++ trunk/ChangeLog	2009-01-18 18:19:09 UTC (rev 3483)
@@ -6,6 +6,8 @@
    scintilla/makefile.win32, src/editor.c, src/filetypes.c,
    src/filetypes.h, src/highlighting.c, src/templates.c, wscript:
    Remove filetype O-Matrix (probably unused for years).
+ * src/keybindings.c, src/keybindings.h:
+   Reorder some keybindings.
 
 
 2009-01-17  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/src/keybindings.c
===================================================================
--- trunk/src/keybindings.c	2009-01-18 18:18:38 UTC (rev 3482)
+++ trunk/src/keybindings.c	2009-01-18 18:19:09 UTC (rev 3483)
@@ -242,7 +242,7 @@
 		GDK_Down, GDK_MOD1_MASK, "edit_scrolllinedown", _("Scroll down the view by one line"), NULL);
 	keybindings_set_item(group, GEANY_KEYS_EDITOR_COMPLETESNIPPET, NULL,	/* handled specially in check_snippet_completion() */
 		GDK_Tab, 0, "edit_completesnippet", _("Complete snippet"), NULL);
-	keybindings_set_item(group, GEANY_KEYS_EDITOR_SNIPPET_NEXT_CURSOR, cb_func_editor_action,
+	keybindings_set_item(group, GEANY_KEYS_EDITOR_SNIPPETNEXTCURSOR, cb_func_editor_action,
 		0, 0, "move_snippetnextcursor", _("Move cursor in snippet"), NULL);
 	keybindings_set_item(group, GEANY_KEYS_EDITOR_SUPPRESSSNIPPETCOMPLETION, cb_func_editor_action,
 		0, 0, "edit_suppresssnippetcompletion", _("Suppress snippet completion"), NULL);
@@ -1727,7 +1727,7 @@
 		case GEANY_KEYS_EDITOR_DUPLICATELINE:
 			duplicate_lines(doc->editor);
 			break;
-		case GEANY_KEYS_EDITOR_SNIPPET_NEXT_CURSOR:
+		case GEANY_KEYS_EDITOR_SNIPPETNEXTCURSOR:
 			snippet_goto_next_cursor(doc->editor->sci,
 					sci_get_current_position(doc->editor->sci));
 			break;

Modified: trunk/src/keybindings.h
===================================================================
--- trunk/src/keybindings.h	2009-01-18 18:18:38 UTC (rev 3482)
+++ trunk/src/keybindings.h	2009-01-18 18:19:09 UTC (rev 3483)
@@ -135,11 +135,11 @@
 	GEANY_KEYS_EDITOR_SCROLLLINEDOWN,
 	GEANY_KEYS_EDITOR_COMPLETESNIPPET,
 	GEANY_KEYS_EDITOR_SUPPRESSSNIPPETCOMPLETION,
+	GEANY_KEYS_EDITOR_SNIPPETNEXTCURSOR,
 	GEANY_KEYS_EDITOR_CONTEXTACTION,
 	GEANY_KEYS_EDITOR_AUTOCOMPLETE,
 	GEANY_KEYS_EDITOR_CALLTIP,
 	GEANY_KEYS_EDITOR_MACROLIST,
-	GEANY_KEYS_EDITOR_SNIPPET_NEXT_CURSOR,
 	GEANY_KEYS_EDITOR_COUNT
 };
 
@@ -209,8 +209,8 @@
 	GEANY_KEYS_SEARCH_FINDNEXTSEL,
 	GEANY_KEYS_SEARCH_FINDPREVSEL,
 	GEANY_KEYS_SEARCH_NEXTMESSAGE,
+	GEANY_KEYS_SEARCH_PREVIOUSMESSAGE,
 	GEANY_KEYS_SEARCH_FINDUSAGE,
-	GEANY_KEYS_SEARCH_PREVIOUSMESSAGE,
 	GEANY_KEYS_SEARCH_FINDDOCUMENTUSAGE,
 	GEANY_KEYS_SEARCH_COUNT
 };
@@ -221,16 +221,16 @@
 	GEANY_KEYS_GOTO_FORWARD,
 	GEANY_KEYS_GOTO_BACK,
 	GEANY_KEYS_GOTO_LINE,
+	GEANY_KEYS_GOTO_LINESTART,
+	GEANY_KEYS_GOTO_LINEEND,
 	GEANY_KEYS_GOTO_MATCHINGBRACE,
 	GEANY_KEYS_GOTO_TOGGLEMARKER,
 	GEANY_KEYS_GOTO_NEXTMARKER,
 	GEANY_KEYS_GOTO_PREVIOUSMARKER,
+	GEANY_KEYS_GOTO_PREVWORDSTART,
+	GEANY_KEYS_GOTO_NEXTWORDSTART,
 	GEANY_KEYS_GOTO_TAGDEFINITION,
 	GEANY_KEYS_GOTO_TAGDECLARATION,
-	GEANY_KEYS_GOTO_LINESTART,
-	GEANY_KEYS_GOTO_LINEEND,
-	GEANY_KEYS_GOTO_PREVWORDSTART,
-	GEANY_KEYS_GOTO_NEXTWORDSTART,
 	GEANY_KEYS_GOTO_COUNT
 };
 
@@ -294,10 +294,10 @@
 	GEANY_KEYS_BUILD_MAKEOWNTARGET,
 	GEANY_KEYS_BUILD_MAKEOBJECT,
 	GEANY_KEYS_BUILD_NEXTERROR,
+	GEANY_KEYS_BUILD_PREVIOUSERROR,
 	GEANY_KEYS_BUILD_RUN,
 	GEANY_KEYS_BUILD_RUN2,
 	GEANY_KEYS_BUILD_OPTIONS,
-	GEANY_KEYS_BUILD_PREVIOUSERROR,
 	GEANY_KEYS_BUILD_COUNT
 };
 


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