13100
|
1 " Vim filetype plugin
|
|
2 " Language: CMake
|
|
3 " Maintainer: Keith Smiley <keithbsmiley@gmail.com>
|
14668
|
4 " Last Change: 2018 Aug 30
|
13100
|
5
|
|
6 " Only do this when not done yet for this buffer
|
|
7 if exists("b:did_ftplugin")
|
|
8 finish
|
|
9 endif
|
|
10
|
14668
|
11 " save 'cpo' for restoration at the end of this file
|
|
12 let s:cpo_save = &cpo
|
|
13 set cpo&vim
|
|
14
|
13100
|
15 " Don't load another plugin for this buffer
|
|
16 let b:did_ftplugin = 1
|
|
17
|
|
18 let b:undo_ftplugin = "setl commentstring<"
|
|
19
|
14668
|
20 if exists('loaded_matchit')
|
|
21 let b:match_words = '\<if\>:\<elseif\>\|\<else\>:\<endif\>'
|
|
22 \ . ',\<foreach\>\|\<while\>:\<break\>:\<endforeach\>\|\<endwhile\>'
|
|
23 \ . ',\<macro\>:\<endmacro\>'
|
|
24 \ . ',\<function\>:\<endfunction\>'
|
|
25 let b:match_ignorecase = 1
|
|
26
|
|
27 let b:undo_ftplugin .= "| unlet b:match_words"
|
|
28 endif
|
|
29
|
13100
|
30 setlocal commentstring=#\ %s
|
14668
|
31
|
|
32 " restore 'cpo' and clean up buffer variable
|
|
33 let &cpo = s:cpo_save
|
|
34 unlet s:cpo_save
|