mirror of git://git.sv.gnu.org/nano.git
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).
This commit is contained in:
parent
622b031e27
commit
b9d6d547b8
|
@ -529,6 +529,7 @@ functionptrtype interpret(int *keycode)
|
|||
return do_findnext;
|
||||
|
||||
switch (tolower(*keycode)) {
|
||||
case 'b':
|
||||
case '-':
|
||||
return do_page_up;
|
||||
case ' ':
|
||||
|
|
Loading…
Reference in New Issue