SF.net SVN: geany: [636] trunk/src/keybindings.c

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Jul 26 14:28:24 UTC 2006


Revision: 636
Author:   ntrel
Date:     2006-07-26 07:28:20 -0700 (Wed, 26 Jul 2006)
ViewCVS:  http://svn.sourceforge.net/geany/?rev=636&view=rev

Log Message:
-----------
Use CTRL-SHIFT-space for Windows show calltips (ALT-space is taken by the window manager)

Modified Paths:
--------------
    trunk/src/keybindings.c
Modified: trunk/src/keybindings.c
===================================================================
--- trunk/src/keybindings.c	2006-07-26 14:27:24 UTC (rev 635)
+++ trunk/src/keybindings.c	2006-07-26 14:28:20 UTC (rev 636)
@@ -195,8 +195,14 @@
 		GDK_d, GDK_CONTROL_MASK, "edit_commentline", _("Comment line"));
 	keys[GEANY_KEYS_EDIT_AUTOCOMPLETE] = fill(cb_func_edit_autocomplete,
 		GDK_space, GDK_CONTROL_MASK, "edit_autocomplete", _("Complete word"));
+#ifdef GEANY_WIN32
+	// on windows alt-space is taken by the window manager
 	keys[GEANY_KEYS_EDIT_CALLTIP] = fill(cb_func_edit_calltip,
+		GDK_space, GDK_CONTROL_MASK | GDK_SHIFT_MASK, "edit_calltip", _("Show calltip"));
+#else
+	keys[GEANY_KEYS_EDIT_CALLTIP] = fill(cb_func_edit_calltip,
 		GDK_space, GDK_MOD1_MASK, "edit_calltip", _("Show calltip"));
+#endif
 	keys[GEANY_KEYS_EDIT_MACROLIST] = fill(cb_func_edit_macrolist,
 		GDK_Return, GDK_CONTROL_MASK, "edit_macrolist", _("Show macro list"));
 	keys[GEANY_KEYS_EDIT_SUPPRESSCOMPLETION] = fill(cb_func_edit_suppresscompletion,


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