nano

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

commit b9d6d547b8011bba43ebd65753d1b3869cee07f0
parent 622b031e274faf275e513ca6bb4625721ae1b5d1
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 11 Oct 2020 16:04:15 +0200

bindings: accept b for scrolling back up in help viewer and file browser

Like in Dillo, and because it could be mnemonic for "Back" and
is directly above the space bar (in a QWERTY layout, at least).

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

diff --git a/src/global.c b/src/global.c @@ -529,6 +529,7 @@ functionptrtype interpret(int *keycode) return do_findnext; switch (tolower(*keycode)) { + case 'b': case '-': return do_page_up; case ' ':