commit c79fe1a1602bcc2a17bbbe3e24ec952cde498cb4
parent fef195bce9c062c23a58a41e4bf656fd25d69dbc
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Mon, 19 Feb 2018 20:01:47 +0100
bindings: show ^/ instead of ^_ for Go-To-Line
The slash is easier to read than the underscore (which almost
disappears at the bottom of the screen), and easier to type
(no Shift needed on a US keyboard), and it kind of harmonizes
with the ^\ for Replace and the M-/ for End-of-buffer.
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/global.c b/src/global.c
@@ -446,6 +446,8 @@ int keycode_from_string(const char *keystring)
if (keystring[0] == '^') {
if (strcasecmp(keystring, "^Space") == 0)
return 0;
+ if (strcasecmp(keystring, "^/") == 0)
+ return '_' - 64;
if (strlen(keystring) == 2)
return keystring[1] - 64;
else
@@ -1120,7 +1122,7 @@ void shortcut_init(void)
#endif
add_to_sclist(MMAIN, "^C", 0, do_cursorpos_void, 0);
add_to_sclist(MMAIN, "F11", 0, do_cursorpos_void, 0);
- add_to_sclist(MMAIN, "^_", 0, do_gotolinecolumn_void, 0);
+ add_to_sclist(MMAIN, "^/", 0, do_gotolinecolumn_void, 0);
add_to_sclist(MMAIN, "M-G", 0, do_gotolinecolumn_void, 0);
add_to_sclist(MMAIN, "F13", 0, do_gotolinecolumn_void, 0);
add_to_sclist(MMAIN|MHELP|MBROWSER|MLINTER, "^Y", 0, do_page_up, 0);