SF.net SVN: geany:[5327] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Tue Oct 26 15:20:53 UTC 2010


Revision: 5327
          http://geany.svn.sourceforge.net/geany/?rev=5327&view=rev
Author:   ntrel
Date:     2010-10-26 15:20:53 +0000 (Tue, 26 Oct 2010)

Log Message:
-----------
Change default for 'Override Geany keybindings' to on.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/keyfile.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2010-10-26 15:13:42 UTC (rev 5326)
+++ trunk/ChangeLog	2010-10-26 15:20:53 UTC (rev 5327)
@@ -4,6 +4,8 @@
    Edit XML tag autocompletion pref and tooltip to include HTML.
  * doc/geany.txt, doc/geany.html:
    Add docs for 'Ensure consistent line endings' pref.
+ * src/keyfile.c:
+   Change default for 'Override Geany keybindings' to on.
 
 
 2010-10-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>

Modified: trunk/src/keyfile.c
===================================================================
--- trunk/src/keyfile.c	2010-10-26 15:13:42 UTC (rev 5326)
+++ trunk/src/keyfile.c	2010-10-26 15:20:53 UTC (rev 5327)
@@ -765,7 +765,7 @@
 		vc->font = utils_get_setting_string(config, "VTE", "font", "Monospace 10");
 		vc->scroll_on_key = utils_get_setting_boolean(config, "VTE", "scroll_on_key", TRUE);
 		vc->scroll_on_out = utils_get_setting_boolean(config, "VTE", "scroll_on_out", TRUE);
-		vc->enable_bash_keys = utils_get_setting_boolean(config, "VTE", "enable_bash_keys", FALSE);
+		vc->enable_bash_keys = utils_get_setting_boolean(config, "VTE", "enable_bash_keys", TRUE);
 		vc->ignore_menu_bar_accel = utils_get_setting_boolean(config, "VTE", "ignore_menu_bar_accel", FALSE);
 		vc->follow_path = utils_get_setting_boolean(config, "VTE", "follow_path", FALSE);
 		vc->run_in_vte = utils_get_setting_boolean(config, "VTE", "run_in_vte", FALSE);


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