Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Maintainer: Nikolai Weibull <now@bitwi.se> |
Bram Moolenaar | e37d50a | 2008-08-06 17:06:04 +0000 | [diff] [blame] | 3 | " Latest Revision: 2008-07-09 |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 4 | |
| 5 | if exists("b:did_ftplugin") |
| 6 | finish |
| 7 | endif |
| 8 | let b:did_ftplugin = 1 |
| 9 | |
Bram Moolenaar | e37d50a | 2008-08-06 17:06:04 +0000 | [diff] [blame] | 10 | let s:cpo_save = &cpo |
| 11 | set cpo&vim |
| 12 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 13 | let b:undo_ftplugin = "setl com< cms< fo<" |
| 14 | |
| 15 | setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql |
Bram Moolenaar | e37d50a | 2008-08-06 17:06:04 +0000 | [diff] [blame] | 16 | |
| 17 | let &cpo = s:cpo_save |
| 18 | unlet s:cpo_save |