From 65bfe928a33d969c6a26b2564bd908c58cd084b4 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 10 Aug 2007 12:57:43 +0000 Subject: [PATCH] allow the Ctrl-U/Ctrl-D scroll count to be >= 1 --- chrome/content/vimperator/mappings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/vimperator/mappings.js b/chrome/content/vimperator/mappings.js index 17033f94..b6019150 100644 --- a/chrome/content/vimperator/mappings.js +++ b/chrome/content/vimperator/mappings.js @@ -679,7 +679,7 @@ function Mappings() //{{{ { var lines; - if (count > 1) + if (count > 0) vimperator.options["scroll"] = count; if (vimperator.options["scroll"] == 0) // the default value of half a page