1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 03:07:58 +01:00

add "f" as a page-down key mapping in the more-prompt pager

This commit is contained in:
Doug Kearns
2007-09-16 15:38:43 +00:00
parent 93acaadbd0
commit 112877f340

View File

@@ -679,6 +679,13 @@ function CommandLine() //{{{
; // fall through
// page down
case "f":
if (vimperator.options["more"] && isScrollable())
win.scrollByPages(1);
else
pass(event);
break;
case "<Space>":
case "<PageDown>":
if (vimperator.options["more"] && isScrollable() && !atEnd())