comparison runtime/syntax/maple.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: Maple V (based on release 4) 2 " Language: Maple V (based on release 4)
3 " Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz> 3 " Maintainer: Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz>
4 " Last Change: Oct 23, 2014 4 " Last Change: Jan 20, 2016
5 " Version: 11 5 " Version: 12
6 " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_MAPLE 6 " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_MAPLE
7 " 7 "
8 " Package Function Selection: {{{1 8 " Package Function Selection: {{{1
9 " Because there are a lot of packages, and because of the potential for namespace 9 " Because there are a lot of packages, and because of the potential for namespace
10 " clashes, this version of <maple.vim> needs the user to select which, if any, 10 " clashes, this version of <maple.vim> needs the user to select which, if any,
28 elseif exists("b:current_syntax") 28 elseif exists("b:current_syntax")
29 finish 29 finish
30 endif 30 endif
31 31
32 " Iskeyword Effects: {{{1 32 " Iskeyword Effects: {{{1
33 if version < 600 33 if !has("patch-7.4.1141")
34 set iskeyword=$,48-57,_,a-z,@-Z 34 setl isk=$,48-57,_,a-z,@-Z
35 else 35 else
36 setlocal iskeyword=$,48-57,_,a-z,@-Z 36 syn iskeyword $,48-57,_,a-z,@-Z
37 endif 37 endif
38 38
39 " Package Selection: {{{1 39 " Package Selection: {{{1
40 " allow user to simply select all packages for highlighting 40 " allow user to simply select all packages for highlighting
41 if exists("mvpkg_all") 41 if exists("mvpkg_all")