mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 17:42:27 +01:00
fix infinite loop when calling "gu" with a {count}
This commit is contained in:
@@ -732,7 +732,7 @@ function Mappings() //{{{
|
||||
if (count < 1)
|
||||
count = 1;
|
||||
|
||||
for (var i = 0; i < count - 1; i--)
|
||||
for (var i = 0; i < count - 1; i++)
|
||||
gocmd += "../";
|
||||
|
||||
openURLs(gocmd);
|
||||
|
||||
Reference in New Issue
Block a user