blob: f978d15303c9dfc0940d1f7edbdd28bcffd2046c [file] [log] [blame]
Bram Moolenaar662db672011-03-22 14:05:35 +01001" Vim filetype plugin file
Bram Moolenaar214641f2017-03-05 17:04:09 +01002" Language: Treetop
3" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
4" Latest Revision: 2011-03-14
Bram Moolenaar662db672011-03-22 14:05:35 +01005
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11let s:cpo_save = &cpo
12set cpo&vim
13
14setlocal comments=b:# commentstring=#\ %s formatoptions-=tcroq formatoptions+=l
15
16let b:undo_ftplugin = "setl com< cms< fo<"
17
18let &cpo = s:cpo_save
19unlet s:cpo_save