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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user