From 0aa4d28ac571dec565f0532bfe44406e2c178d75 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 4 Sep 2009 20:20:03 +1000 Subject: [PATCH] Fix inputting of numbers in INSERT mode. This is a quick fix, I haven't digested the relevant commit yet. --- common/content/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/events.js b/common/content/events.js index 5282cd4e..5e835f8c 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -1584,7 +1584,7 @@ function Events() //{{{ if (countStr && !candidateCommand) { // no count for insert mode mappings - if (!modes.mainMode.count && !modes.mainMode.input) + if (!modes.mainMode.count || modes.mainMode.input) stop = false; else input.buffer = inputStr;