diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-03-22 14:05:35 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-03-22 14:05:35 +0100 |
commit | 662db673f9fca628d8e1a7ac4fae3be41dee5d1c (patch) | |
tree | b8224db3a196a36c87f40e55cfab5de5c936bee5 /runtime/ftplugin/treetop.vim | |
parent | e9d4b58dda5ce38389617079722cf9bfcd966599 (diff) | |
download | vim-git-662db673f9fca628d8e1a7ac4fae3be41dee5d1c.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/ftplugin/treetop.vim')
-rw-r--r-- | runtime/ftplugin/treetop.vim | 19 |
1 files changed, 19 insertions, 0 deletions
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 <now@bitwi.se> +" 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 |