aboutsummaryrefslogtreecommitdiff
path: root/vim/after/syntax/vim.vim
blob: bd7d8274ad32ed10adacb51d7f52bb08c5007125 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
" Remove special highlighting for double-quoted strings and colon labels in
" comments
syntax clear vimCommentString
syntax clear vimCommentTitle

" Highlight :CompilerSet commands like :set/:setlocal, but only in compiler
" scripts in recognizable paths
if expand('%:p:h:t') ==# 'compiler'
      \ && expand('%:e') ==# 'vim'
  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
endif