From 0c917eab078f5d16f874390f04adc11eba9e3cb7 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 29 May 2019 03:10:47 +1200 Subject: Color Vim script :CompilerSet commands better --- vim/after/syntax/vim.vim | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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="\" + \ end="$" end="|" end="<[cC][rR]>" + \ keepend + \ matchgroup=vimNotation + \ oneline + \ skip="\%(\\\\\)*\\." + \ contains=vimSetEqual + \,vimOption + \,vimErrSetting + \,vimComment + \,vimSetString + \,vimSetMod -- cgit v1.2.3 From 4294cd16b2ea0f583b921ffa09a2b3f1e9044952 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 29 May 2019 03:12:07 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 9fca279b..e19b164d 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v4.58.0 -Tue May 28 15:02:42 UTC 2019 +tejr dotfiles v4.59.0 +Tue May 28 15:12:07 UTC 2019 -- cgit v1.2.3