diff options
-rw-r--r-- | VERSION | 4 | ||||
-rw-r--r-- | vim/after/syntax/vim.vim | 17 |
2 files changed, 19 insertions, 2 deletions
@@ -1,2 +1,2 @@ -tejr dotfiles v4.58.0 -Tue May 28 15:02:42 UTC 2019 +tejr dotfiles v5.0.0 +Tue May 28 15:19:09 UTC 2019 diff --git a/vim/after/syntax/vim.vim b/vim/after/syntax/vim.vim index acb5cdc5..c5417413 100644 --- a/vim/after/syntax/vim.vim +++ b/vim/after/syntax/vim.vim @@ -1,2 +1,19 @@ " Remove special highlighting for double-quoted strings in comments syntax clear vimCommentString + +" Highlight :CompilerSet commands like :set/:setlocal +syntax keyword vimCommand contained + \ CompilerSet +syntax region vimSet matchgroup=vimCommand + \ start="\<CompilerSet\>" + \ end="$" end="|" end="<[cC][rR]>" + \ keepend + \ matchgroup=vimNotation + \ oneline + \ skip="\%(\\\\\)*\\." + \ contains=vimSetEqual + \,vimOption + \,vimErrSetting + \,vimComment + \,vimSetString + \,vimSetMod |