1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 20:04:11 +01:00

Fix inputting of numbers in INSERT mode.

This is a quick fix, I haven't digested the relevant commit yet.
This commit is contained in:
Doug Kearns
2009-09-04 20:20:03 +10:00
parent cd52ef6ad3
commit 0aa4d28ac5

View File

@@ -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;