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 2457959 commit 77e393eCopy full SHA for 77e393e
js/vimlparser.js
@@ -755,7 +755,7 @@ VimLParser.prototype.parse_command_modifiers = function() {
755
viml_add(modifiers, {"name":"keeppatterns"});
756
}
757
else if (viml_stridx("hide", k) == 0 && viml_len(k) >= 3) {
758
- //hid\%[e]
+ // hid\%[e]
759
if (this.ends_excmds(c)) {
760
break;
761
@@ -778,7 +778,7 @@ VimLParser.prototype.parse_command_modifiers = function() {
778
viml_add(modifiers, {"name":"noswapfile"});
779
780
else if (viml_stridx("rightbelow", k) == 0 && viml_len(k) >= 6) {
781
- //rightb\%[elow]
+ // rightb\%[elow]
782
viml_add(modifiers, {"name":"rightbelow"});
783
784
else if (viml_stridx("sandbox", k) == 0 && viml_len(k) >= 3) {
0 commit comments