blob: 7b4126a503ea51b9967558ecef2fa3d969b2b015 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim filetype plugin file
2" Language: csc
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003"
4" This runtime file is looking for a new maintainer.
5"
6" Former maintainer: Dan Sharp
Bram Moolenaar5c736222010-01-06 20:54:52 +01007" Last Changed: 20 Jan 2009
Bram Moolenaar071d4272004-06-13 20:20:40 +00008
9if exists("b:did_ftplugin") | finish | endif
10let b:did_ftplugin = 1
11
12" Make sure the continuation lines below do not cause problems in
13" compatibility mode.
14let s:save_cpo = &cpo
15set cpo-=C
16
17if exists("loaded_matchit")
18 let b:match_words=
19 \ '\<fix\>:\<endfix\>,' .
20 \ '\<if\>:\<else\%(if\)\=\>:\<endif\>,' .
21 \ '\<!loopondimensions\>\|\<!looponselected\>:\<!endloop\>'
22endif
23
24" Undo the stuff we changed.
25let b:undo_ftplugin = "unlet! b:match_words"
26
27" Restore the saved compatibility options.
28let &cpo = s:save_cpo
Bram Moolenaar84f72352012-03-11 15:57:40 +010029unlet s:save_cpo