From 112877f3400ac59e8b6cfeda6250e766ca1725a6 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sun, 16 Sep 2007 15:38:43 +0000 Subject: [PATCH] add "f" as a page-down key mapping in the more-prompt pager --- chrome/content/vimperator/ui.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/chrome/content/vimperator/ui.js b/chrome/content/vimperator/ui.js index 19813052..09c9b6dd 100644 --- a/chrome/content/vimperator/ui.js +++ b/chrome/content/vimperator/ui.js @@ -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 "": case "": if (vimperator.options["more"] && isScrollable() && !atEnd())