comparison runtime/syntax/lisp.vim @ 7707:41768bcebc9b

commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 21 23:36:05 2016 +0100 Update runtime files
author Christian Brabandt <cb@256bit.org>
date Thu, 21 Jan 2016 23:45:07 +0100
parents b3bc99b909c3
children 9305a1251e51
comparison
equal deleted inserted replaced
7706:dd457970efc8 7707:41768bcebc9b
1 " Vim syntax file 1 " Vim syntax file
2 " Language: Lisp 2 " Language: Lisp
3 " Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz> 3 " Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz>
4 " Last Change: Oct 06, 2014 4 " Last Change: Jan 20, 2016
5 " Version: 23 5 " Version: 24
6 " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_LISP 6 " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_LISP
7 " 7 "
8 " Thanks to F Xavier Noria for a list of 978 Common Lisp symbols taken from HyperSpec 8 " Thanks to F Xavier Noria for a list of 978 Common Lisp symbols taken from HyperSpec
9 " Clisp additions courtesy of http://clisp.cvs.sourceforge.net/*checkout*/clisp/clisp/emacs/lisp.vim 9 " Clisp additions courtesy of http://clisp.cvs.sourceforge.net/*checkout*/clisp/clisp/emacs/lisp.vim
10 10
14 finish 14 finish
15 endif 15 endif
16 16
17 if exists("g:lisp_isk") 17 if exists("g:lisp_isk")
18 exe "setl isk=".g:lisp_isk 18 exe "setl isk=".g:lisp_isk
19 elseif !has("patch-7.4.1141")
20 setl isk=38,42,43,45,47-58,60-62,64-90,97-122,_
19 else 21 else
20 setl isk=38,42,43,45,47-58,60-62,64-90,97-122,_ 22 syn iskeyword 38,42,43,45,47-58,60-62,64-90,97-122,_
21 endif 23 endif
22 24
23 if exists("g:lispsyntax_ignorecase") || exists("g:lispsyntax_clisp") 25 if exists("g:lispsyntax_ignorecase") || exists("g:lispsyntax_clisp")
24 set ignorecase 26 set ignorecase
25 endif 27 endif