mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-09 09:34:12 +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)
|
if (countStr && !candidateCommand)
|
||||||
{
|
{
|
||||||
// no count for insert mode mappings
|
// no count for insert mode mappings
|
||||||
if (!modes.mainMode.count && !modes.mainMode.input)
|
if (!modes.mainMode.count || modes.mainMode.input)
|
||||||
stop = false;
|
stop = false;
|
||||||
else
|
else
|
||||||
input.buffer = inputStr;
|
input.buffer = inputStr;
|
||||||
|
|||||||
Reference in New Issue
Block a user