From 662db673f9fca628d8e1a7ac4fae3be41dee5d1c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 22 Mar 2011 14:05:35 +0100 Subject: Updated runtime files. --- runtime/ftplugin/treetop.vim | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 runtime/ftplugin/treetop.vim (limited to 'runtime/ftplugin/treetop.vim') diff --git a/runtime/ftplugin/treetop.vim b/runtime/ftplugin/treetop.vim new file mode 100644 index 000000000..2da3c405f --- /dev/null +++ b/runtime/ftplugin/treetop.vim @@ -0,0 +1,19 @@ +" Vim filetype plugin file +" Language: Treetop +" Maintainer: Nikolai Weibull +" Latest Revision: 2011-03-14 + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +let s:cpo_save = &cpo +set cpo&vim + +setlocal comments=b:# commentstring=#\ %s formatoptions-=tcroq formatoptions+=l + +let b:undo_ftplugin = "setl com< cms< fo<" + +let &cpo = s:cpo_save +unlet s:cpo_save -- cgit v1.2.1