blob: 557fd82c535295a714b63c934763b0ef462d9019 [file] [log] [blame]
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001" Vim filetype plugin file
2" Maintainer: Nikolai Weibull <now@bitwi.se>
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003" Latest Revision: 2007-12-04
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00004
5if exists("b:did_ftplugin")
6 finish
7endif
8let b:did_ftplugin = 1
9
10let s:cpo_save = &cpo
11set cpo&vim
12
13let b:undo_ftplugin = "setl com< cms< fo<"
14
15setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
16
Bram Moolenaare37d50a2008-08-06 17:06:04 +000017let &cpo = s:cpo_save
18unlet s:cpo_save