blob: 0ae4b452d0b6d3d60f4584e988e6180f9ba1e309 [file] [log] [blame]
Bram Moolenaar8424a622006-04-19 21:23:36 +00001" Vim filetype plugin file
Bram Moolenaar214641f2017-03-05 17:04:09 +01002" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
3" Latest Revision: 2008-07-09
Bram Moolenaar8424a622006-04-19 21:23:36 +00004
5if exists("b:did_ftplugin")
6 finish
7endif
8let b:did_ftplugin = 1
9
Bram Moolenaare37d50a2008-08-06 17:06:04 +000010let s:cpo_save = &cpo
11set cpo&vim
12
Bram Moolenaar8424a622006-04-19 21:23:36 +000013let b:undo_ftplugin = "setl com< cms< fo<"
14
15setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
Bram Moolenaare37d50a2008-08-06 17:06:04 +000016
17let &cpo = s:cpo_save
18unlet s:cpo_save