browser: make ^End work properly by fixing a paste error

It complained of "Unbound key" until now.
master
Benno Schulenberg 2017-04-26 10:03:13 +02:00
parent 99fa20645c
commit a832fffb1f
1 changed files with 1 additions and 1 deletions

View File

@ -1258,7 +1258,7 @@ void shortcut_init(void)
add_to_sclist(MBROWSER, "Home", KEY_HOME, do_first_file, 0);
add_to_sclist(MBROWSER, "End", KEY_END, do_last_file, 0);
add_to_sclist(MBROWSER, "^Home", CONTROL_HOME, do_first_file, 0);
add_to_sclist(MBROWSER, "^End", CONTROL_HOME, do_last_file, 0);
add_to_sclist(MBROWSER, "^End", CONTROL_END, do_last_file, 0);
add_to_sclist(MBROWSER, "^_", 0, goto_dir_void, 0);
add_to_sclist(MBROWSER, "M-G", 0, goto_dir_void, 0);
add_to_sclist(MBROWSER, "F13", 0, goto_dir_void, 0);