diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-07-04 22:49:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-07-04 22:49:24 +0000 |
commit | 0dc065ee7c3bd51e5df3926700e409ae74cdfecf (patch) | |
tree | 3e2f974603cbba12d3f1dcebf493e7ff2bf54d7f /runtime/ftplugin/slpconf.vim | |
parent | 7d1f5dbc0a254d7524b3f985f2440bf89e037355 (diff) | |
download | vim-git-0dc065ee7c3bd51e5df3926700e409ae74cdfecf.tar.gz |
updated for version 7.0102v7.0102
Diffstat (limited to 'runtime/ftplugin/slpconf.vim')
-rw-r--r-- | runtime/ftplugin/slpconf.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/runtime/ftplugin/slpconf.vim b/runtime/ftplugin/slpconf.vim new file mode 100644 index 000000000..dea5dfd23 --- /dev/null +++ b/runtime/ftplugin/slpconf.vim @@ -0,0 +1,14 @@ +" Vim filetype plugin file +" Language: RFC 2614 - An API for Service Location configuration file +" Maintainer: Nikolai Weibull <nikolai+work.vim@bitwi.se> +" Latest Revision: 2005-07-04 + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +let b:undo_ftplugin = "setl com< cms< fo<" + +setlocal comments=:#,:; commentstring=#\ %s +setlocal formatoptions-=t formatoptions+=croql |