blob: 563bb8f5f1c749f22f314af053a7ff1ad83467c0 [file] [log] [blame]
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001" Vim filetype plugin file
Bram Moolenaar214641f2017-03-05 17:04:09 +01002" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
3" 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