File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -563,7 +563,7 @@ function! s:VimLParser.parse_command_modifiers()
563
563
call add (modifiers, {' name' : ' keepjumps' })
564
564
elseif stridx (' keeppatterns' , k ) == 0 && len (k ) >= 5 " keepp\%[atterns]
565
565
call add (modifiers, {' name' : ' keeppatterns' })
566
- elseif stridx (' hide' , k ) == 0 && len (k ) >= 3 " hid\%[e]
566
+ elseif stridx (' hide' , k ) == 0 && len (k ) >= 3 " hid\%[e]
567
567
if self .ends_excmds (c )
568
568
break
569
569
endif
@@ -576,7 +576,7 @@ function! s:VimLParser.parse_command_modifiers()
576
576
call add (modifiers, {' name' : ' noautocmd' })
577
577
elseif stridx (' noswapfile' , k ) == 0 && len (k ) >= 3 " :nos\%[wapfile]
578
578
call add (modifiers, {' name' : ' noswapfile' })
579
- elseif stridx (' rightbelow' , k ) == 0 && len (k ) >= 6 " rightb\%[elow]
579
+ elseif stridx (' rightbelow' , k ) == 0 && len (k ) >= 6 " rightb\%[elow]
580
580
call add (modifiers, {' name' : ' rightbelow' })
581
581
elseif stridx (' sandbox' , k ) == 0 && len (k ) >= 3 " san\%[dbox]
582
582
call add (modifiers, {' name' : ' sandbox' })
You can’t perform that action at this time.
0 commit comments