nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit a832fffb1f7787d90f245c32e8db7083b5c9c851
parent 99fa20645c7768c3c6c56b7c9234c26c41a05abd
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Wed, 26 Apr 2017 10:03:13 +0200

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

It complained of "Unbound key" until now.

Diffstat:
Msrc/global.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/global.c b/src/global.c @@ -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);