We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf3fba5 commit f513ba0Copy full SHA for f513ba0
js/vimlparser.js
@@ -464,7 +464,7 @@ function ExArg() {
464
ea.force_ff = 0;
465
ea.force_enc = 0;
466
ea.bad_char = 0;
467
- ea.linepos = [];
+ ea.linepos = {};
468
ea.cmdpos = [];
469
ea.argpos = [];
470
ea.cmd = {};
py/vimlparser.py
@@ -404,7 +404,7 @@ def ExArg():
404
ea.force_ff = 0
405
ea.force_enc = 0
406
ea.bad_char = 0
407
- ea.linepos = []
+ ea.linepos = AttributeDict({})
408
ea.cmdpos = []
409
ea.argpos = []
410
ea.cmd = AttributeDict({})
0 commit comments