diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-01 22:48:52 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-01 22:52:42 +0200 |
commit | 31a5ec23ebef511ca89f7d24077e7a5624ed4c6e (patch) | |
tree | e2b12957c84e122c723a6061352052d48b711ee0 /runtime/syntax/lisp.vim | |
parent | 2cdbbe50a4a695004adce50d7502869bb2410928 (diff) | |
download | rneovim-31a5ec23ebef511ca89f7d24077e7a5624ed4c6e.tar.gz rneovim-31a5ec23ebef511ca89f7d24077e7a5624ed4c6e.tar.bz2 rneovim-31a5ec23ebef511ca89f7d24077e7a5624ed4c6e.zip |
vim-patch:723dd946f948
Update runtime files.
https://github.com/vim/vim/commit/723dd946f94856be94a943876945fb1bd8169059
Diffstat (limited to 'runtime/syntax/lisp.vim')
-rw-r--r-- | runtime/syntax/lisp.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/syntax/lisp.vim b/runtime/syntax/lisp.vim index b6aa04b2c7..d99e032bbf 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: Feb 15, 2018 -" Version: 27 +" Last Change: Mar 26, 2019 +" Version: 28 " 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 @@ -16,10 +16,10 @@ endif if exists("g:lisp_isk") exe "setl isk=".g:lisp_isk -elseif !has("patch-7.4.1142") - setl isk=38,42,43,45,47-58,60-62,64-90,97-122,_ -else +elseif (v:version == 704 && has("patch-7.4.1142")) || v:version > 704 syn iskeyword 38,42,43,45,47-58,60-62,64-90,97-122,_ +else + setl isk=38,42,43,45,47-58,60-62,64-90,97-122,_ endif if exists("g:lispsyntax_ignorecase") || exists("g:lispsyntax_clisp") |