aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/lisp.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-08-02 07:10:36 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-08-02 16:20:22 +0200
commit7c19a4e51881294adc8d174c5be7f546a052c989 (patch)
treed0eba7321b67dae316054340a6696cf1800686c7 /runtime/syntax/lisp.vim
parent1e4e890a764dfef1db7046ff24d43241c4054925 (diff)
downloadrneovim-7c19a4e51881294adc8d174c5be7f546a052c989.tar.gz
rneovim-7c19a4e51881294adc8d174c5be7f546a052c989.tar.bz2
rneovim-7c19a4e51881294adc8d174c5be7f546a052c989.zip
vim-patch:85850f3a5ef9
Update runtime files https://github.com/vim/vim/commit/85850f3a5ef9f5a9d22e908ef263de8faa265a95
Diffstat (limited to 'runtime/syntax/lisp.vim')
-rw-r--r--runtime/syntax/lisp.vim8
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/syntax/lisp.vim b/runtime/syntax/lisp.vim
index d99e032bbf..17c54d1a4f 100644
--- a/runtime/syntax/lisp.vim
+++ b/runtime/syntax/lisp.vim
@@ -1,8 +1,8 @@
" Vim syntax file
" Language: Lisp
" Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz>
-" Last Change: Mar 26, 2019
-" Version: 28
+" Last Change: Jul 11, 2019
+" Version: 29
" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_LISP
"
" Thanks to F Xavier Noria for a list of 978 Common Lisp symbols taken from HyperSpec
@@ -54,7 +54,7 @@ if exists("g:lisp_rainbow") && g:lisp_rainbow != 0
syn region lispParen8 contained matchgroup=hlLevel8 start="`\=(" end=")" skip="|.\{-}|" contains=@lispListCluster,lispParen9
syn region lispParen9 contained matchgroup=hlLevel9 start="`\=(" end=")" skip="|.\{-}|" contains=@lispListCluster,lispParen0
else
- syn region lispList matchgroup=Delimiter start="(" skip="|.\{-}|" matchgroup=Delimiter end=")" contains=@lispListCluster
+ syn region lispList matchgroup=lispParen start="(" skip="|.\{-}|" matchgroup=lispParen end=")" contains=@lispListCluster
syn region lispBQList matchgroup=PreProc start="`(" skip="|.\{-}|" matchgroup=PreProc end=")" contains=@lispListCluster
endif
@@ -608,6 +608,8 @@ if !exists("skip_lisp_syntax_inits")
hi def hlLevel8 ctermfg=blue guifg=darkslateblue
hi def hlLevel9 ctermfg=darkmagenta guifg=darkviolet
endif
+ else
+ hi def link lispParen Delimiter
endif
endif