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