aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/webmacro.vim
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-06-10 08:40:32 +0200
committerGitHub <noreply@github.com>2022-06-10 08:40:32 +0200
commit6eaf10502c99e96704daa07987f73658d6c4d68a (patch)
tree9ff5ff7b9d80392ee2ab5302a6d46c8daf5d8e22 /runtime/syntax/webmacro.vim
parent58323b1fe2e494cf6a75f108780e21c08996c08e (diff)
downloadrneovim-6eaf10502c99e96704daa07987f73658d6c4d68a.tar.gz
rneovim-6eaf10502c99e96704daa07987f73658d6c4d68a.tar.bz2
rneovim-6eaf10502c99e96704daa07987f73658d6c4d68a.zip
vim-patch:partial:63f32603789d (#18916)
Update runtime files https://github.com/vim/vim/commit/63f32603789d1a27c559fc440325955fd0b8b500 skip translations skip user manual rewrite
Diffstat (limited to 'runtime/syntax/webmacro.vim')
-rw-r--r--runtime/syntax/webmacro.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/syntax/webmacro.vim b/runtime/syntax/webmacro.vim
index fb1fff6d3d..95975251af 100644
--- a/runtime/syntax/webmacro.vim
+++ b/runtime/syntax/webmacro.vim
@@ -34,9 +34,9 @@ syn region webmacroList contained matchgroup=Structure start="\[" matchgroup=Str
syn region webmacroIf start="#if" start="#else" end="{"me=e-1 contains=webmacroVariable,webmacroNumber,webmacroString,webmacroBoolean,webmacroList nextgroup=webmacroBraces
syn region webmacroForeach start="#foreach" end="{"me=e-1 contains=webmacroVariable,webmacroNumber,webmacroString,webmacroBoolean,webmacroList nextgroup=webmacroBraces
-syn match webmacroSet "#set .*$" contains=webmacroVariable,webmacroNumber,webmacroNumber,webmacroBoolean,webmacroString,webmacroList
-syn match webmacroInclude "#include .*$" contains=webmacroVariable,webmacroNumber,webmacroNumber,webmacroBoolean,webmacroString,webmacroList
-syn match webmacroParse "#parse .*$" contains=webmacroVariable,webmacroNumber,webmacroNumber,webmacroBoolean,webmacroString,webmacroList
+syn match webmacroSet "#set .*$" contains=webmacroVariable,webmacroNumber,webmacroBoolean,webmacroString,webmacroList
+syn match webmacroInclude "#include .*$" contains=webmacroVariable,webmacroNumber,webmacroBoolean,webmacroString,webmacroList
+syn match webmacroParse "#parse .*$" contains=webmacroVariable,webmacroNumber,webmacroBoolean,webmacroString,webmacroList
syn region webmacroUse matchgroup=PreProc start="#use .*" matchgroup=PreProc end="^-.*" contains=webmacroHash,@HtmlTop
syn region webmacroBraces matchgroup=Structure start="{" matchgroup=Structure end="}" contained transparent
syn match webmacroBracesError "[{}]"