xref: /vim-8.2.3635/runtime/ftplugin/treetop.vim (revision 214641f7)
1" Vim filetype plugin file
2" Language:             Treetop
3" Previous Maintainer:  Nikolai Weibull <[email protected]>
4" Latest Revision:      2011-03-14
5
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
20