mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 21:28:00 +01:00
Fix some "for each" iteration of arrays.
This commit is contained in:
@@ -1091,7 +1091,7 @@ function Commands() //{{{
|
||||
cmd.count ? "0c" : "",
|
||||
completerToString(cmd.completer),
|
||||
cmd.replacementText || "function () { ... }"]
|
||||
for each (cmd in cmds)));
|
||||
for ([,cmd] in Iterator(cmds))));
|
||||
|
||||
commandline.echo(str, commandline.HL_NORMAL, commandline.FORCE_MULTILINE);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user