[geany/geany] 8253e2: Use 'g' as shortcut key for "Use multi-line matching" instead of 'l'.
Ross Konsolebox
git-noreply at xxxxx
Wed Sep 9 05:37:10 UTC 2015
Branch: refs/heads/master
Author: Ross Konsolebox <konsolebox at gmail.com>
Committer: Ross Konsolebox <konsolebox at gmail.com>
Date: Wed, 09 Sep 2015 05:37:10 UTC
Commit: 8253e2bd481e10c49bf5367d996dd36126c82ded
https://github.com/geany/geany/commit/8253e2bd481e10c49bf5367d996dd36126c82ded
Log Message:
-----------
Use 'g' as shortcut key for "Use multi-line matching" instead of 'l'.
The current shorcut key for "Use multi-line matching" conflicts with
"In Selection" when "Use regular expressions" is enabled. It should be
convenient if we change it.
We choose 'g' since other letters are already in use:
u: "Use regular expressions"
s: "Search for"
e: "Use escape sequences"
m: "Mark"
l: "In Selection"
t: "Match from start of word"
i: "In Document"
n: "Replace & Find"
a: "Case sensitive"
c: "Close"
h: "Replace with"
Modified Paths:
--------------
src/search.c
Modified: src/search.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -319,7 +319,7 @@ static GtkWidget *add_find_checkboxes(GtkDialog *dialog)
_("Replace \\\\, \\t, \\n, \\r and \\uXXXX (Unicode characters) with the "
"corresponding control characters"));
- check_multiline = gtk_check_button_new_with_mnemonic(_("Use multi-_line matching"));
+ check_multiline = gtk_check_button_new_with_mnemonic(_("Use multi-line matchin_g"));
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_multiline), FALSE);
gtk_widget_set_sensitive(check_multiline, FALSE);
ui_hookup_widget(dialog, check_multiline, "check_multiline");
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list