bindings: recognize the ^W^Y and ^W^V legacy keystrokes again
The keystrokes are recognized and acted upon, but they are not visible in the menu nor in the help text, and they cannot be rebound. They are there just to avoid frustrating the muscle memory of long-time users. This fixes https://savannah.gnu.org/bugs/?56002. Reported-by: Peter Zwegat <peterzwegat@yopmail.com>master
parent
aa2568858e
commit
8e302738e8
|
@ -1309,6 +1309,9 @@ void shortcut_init(void)
|
|||
#endif
|
||||
add_to_sclist(MGOTOLINE, "^Y", 0, to_first_line, 0);
|
||||
add_to_sclist(MGOTOLINE, "^V", 0, to_last_line, 0);
|
||||
/* Some people are used to having these keystrokes in the Search menu. */
|
||||
add_to_sclist(MWHEREIS, "^Y", 0, to_first_line, 0);
|
||||
add_to_sclist(MWHEREIS, "^V", 0, to_last_line, 0);
|
||||
#ifdef ENABLE_BROWSER
|
||||
add_to_sclist(MWHEREISFILE, "^Y", 0, to_first_file, 0);
|
||||
add_to_sclist(MWHEREISFILE, "^V", 0, to_last_file, 0);
|
||||
|
|
Loading…
Reference in New Issue