Skip to content

Commit 77e393e

Browse files
committed
gen
1 parent 2457959 commit 77e393e

File tree

2 files changed

+213
-147
lines changed

2 files changed

+213
-147
lines changed

js/vimlparser.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ VimLParser.prototype.parse_command_modifiers = function() {
755755
viml_add(modifiers, {"name":"keeppatterns"});
756756
}
757757
else if (viml_stridx("hide", k) == 0 && viml_len(k) >= 3) {
758-
//hid\%[e]
758+
// hid\%[e]
759759
if (this.ends_excmds(c)) {
760760
break;
761761
}
@@ -778,7 +778,7 @@ VimLParser.prototype.parse_command_modifiers = function() {
778778
viml_add(modifiers, {"name":"noswapfile"});
779779
}
780780
else if (viml_stridx("rightbelow", k) == 0 && viml_len(k) >= 6) {
781-
//rightb\%[elow]
781+
// rightb\%[elow]
782782
viml_add(modifiers, {"name":"rightbelow"});
783783
}
784784
else if (viml_stridx("sandbox", k) == 0 && viml_len(k) >= 3) {

0 commit comments

Comments
 (0)