* src/browser.c (do_browser): Allow 'firstfile' and 'lastfile' to be
rebound to Ctrl keys -- checking meta_key is wrong, the function has
already been determined, that is all that matters.
+ * src/help.c (do_help): Same thing for 'firstline'/'lastline'.
2014-06-23 Benno Schulenberg <bensberg@justemail.net>
* src/nano.h, src/move.c (do_up, do_down), src/winio.c (edit_scrol):
if (line + (editwinrows - 1) < last_line)
line++;
} else if (f->scfunc == do_first_line) {
- if (meta_key)
- line = 0;
+ line = 0;
} else if (f->scfunc == do_last_line) {
- if (meta_key) {
- if (line + (editwinrows - 1) < last_line)
- line = last_line - (editwinrows - 1);
- }
+ if (line + (editwinrows - 1) < last_line)
+ line = last_line - (editwinrows - 1);
} else if (f->scfunc == do_exit) {
/* Exit from the help browser. */
break;