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 161cc46 commit bf97884Copy full SHA for bf97884
autoload/vimlparser.vim
@@ -568,6 +568,8 @@ function! s:VimLParser.parse_command_modifiers()
568
call add(modifiers, {'name': 'leftabove'})
569
elseif stridx('noautocmd', k) == 0 && len(k) >= 3 " noa\%[utocmd]
570
call add(modifiers, {'name': 'noautocmd'})
571
+ elseif stridx('noswapfile', k) == 0 && len(k) >= 3 " :nos\%[wapfile]
572
+ call add(modifiers, {'name': 'noswapfile'})
573
elseif stridx('rightbelow', k) == 0 && len(k) >= 6 "rightb\%[elow]
574
call add(modifiers, {'name': 'rightbelow'})
575
elseif stridx('sandbox', k) == 0 && len(k) >= 3 " san\%[dbox]
0 commit comments