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.master
parent
fef195bce9
commit
c79fe1a160
|
@ -446,6 +446,8 @@ int keycode_from_string(const char *keystring)
|
||||||
if (keystring[0] == '^') {
|
if (keystring[0] == '^') {
|
||||||
if (strcasecmp(keystring, "^Space") == 0)
|
if (strcasecmp(keystring, "^Space") == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
if (strcasecmp(keystring, "^/") == 0)
|
||||||
|
return '_' - 64;
|
||||||
if (strlen(keystring) == 2)
|
if (strlen(keystring) == 2)
|
||||||
return keystring[1] - 64;
|
return keystring[1] - 64;
|
||||||
else
|
else
|
||||||
|
@ -1120,7 +1122,7 @@ void shortcut_init(void)
|
||||||
#endif
|
#endif
|
||||||
add_to_sclist(MMAIN, "^C", 0, do_cursorpos_void, 0);
|
add_to_sclist(MMAIN, "^C", 0, do_cursorpos_void, 0);
|
||||||
add_to_sclist(MMAIN, "F11", 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, "M-G", 0, do_gotolinecolumn_void, 0);
|
||||||
add_to_sclist(MMAIN, "F13", 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);
|
add_to_sclist(MMAIN|MHELP|MBROWSER|MLINTER, "^Y", 0, do_page_up, 0);
|
||||||
|
|
Loading…
Reference in New Issue