diff options
author | James McCoy <jamessan@jamessan.com> | 2016-06-04 06:52:51 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-06-06 23:08:26 -0400 |
commit | 7634764e4c72d94855b30d70c19b117e3d5fccd8 (patch) | |
tree | 2ef668af7c1a80acd36fdaf6beb53b217a67f433 /runtime/syntax/lisp.vim | |
parent | 999590b313ef32ca29c4ddba20c5b719730ee7ff (diff) | |
download | rneovim-7634764e4c72d94855b30d70c19b117e3d5fccd8.tar.gz rneovim-7634764e4c72d94855b30d70c19b117e3d5fccd8.tar.bz2 rneovim-7634764e4c72d94855b30d70c19b117e3d5fccd8.zip |
vim-patch:13d5aee
Update runtime files
https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Ignored changes to
* doc/develop.txt, since they were all in the "Coding Style"
section, which is completely different between Vim and Neovim.
* doc/tags, doc/todo.txt
* syntax/vim.vim, generated at build time
Diffstat (limited to 'runtime/syntax/lisp.vim')
-rw-r--r-- | runtime/syntax/lisp.vim | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/syntax/lisp.vim b/runtime/syntax/lisp.vim index 2528f4f9b1..f496398d50 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: Oct 06, 2014 -" Version: 23 +" Last Change: Jan 20, 2016 +" Version: 24 " 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,8 +16,10 @@ endif if exists("g:lisp_isk") exe "setl isk=".g:lisp_isk -else +elseif !has("patch-7.4.1141") setl isk=38,42,43,45,47-58,60-62,64-90,97-122,_ +else + syn iskeyword 38,42,43,45,47-58,60-62,64-90,97-122,_ endif if exists("g:lispsyntax_ignorecase") || exists("g:lispsyntax_clisp") |