mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
vim-patch:a1dc649: runtime(dosbatch): Show %%i as an argument in syntax file
Inside batch files, for-variables must be written as %%i, not %i.
closes: vim/vim#15453
a1dc64956f
Co-authored-by: Ken Takata <kentkt@csc.jp>
This commit is contained in:
@ -75,7 +75,7 @@ syn match dosbatchSet "\s\h\w*[+-]\==\{-1}" contains=dosbatchIdentifier,dosbatc
|
|||||||
|
|
||||||
" Args to bat files and for loops, etc
|
" Args to bat files and for loops, etc
|
||||||
syn match dosbatchArgument "%\(\d\|\*\)"
|
syn match dosbatchArgument "%\(\d\|\*\)"
|
||||||
syn match dosbatchArgument "%[a-z]\>"
|
syn match dosbatchArgument "%%[a-z]\>"
|
||||||
if dosbatch_cmdextversion == 1
|
if dosbatch_cmdextversion == 1
|
||||||
syn match dosbatchArgument "%\~[fdpnxs]\+\(\($PATH:\)\=[a-z]\|\d\)\>"
|
syn match dosbatchArgument "%\~[fdpnxs]\+\(\($PATH:\)\=[a-z]\|\d\)\>"
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user