diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-08-06 17:06:04 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-08-06 17:06:04 +0000 |
commit | e37d50a5def1c0ff162392cd3f017059c458650c (patch) | |
tree | e7d1e2b17976b130d1283d33b091baf30cfc5d2c /runtime/ftplugin/pamconf.vim | |
parent | da40c8536c2b7bdbd1d192ee1aa3045e2119675e (diff) | |
download | vim-e37d50a5def1c0ff162392cd3f017059c458650c.zip |
updated for version 7.2c-000
Diffstat (limited to 'runtime/ftplugin/pamconf.vim')
-rw-r--r-- | runtime/ftplugin/pamconf.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/ftplugin/pamconf.vim b/runtime/ftplugin/pamconf.vim index cf9707aab..96d96461e 100644 --- a/runtime/ftplugin/pamconf.vim +++ b/runtime/ftplugin/pamconf.vim @@ -1,13 +1,19 @@ " Vim filetype plugin file " Language: pam(8) configuration file " Maintainer: Nikolai Weibull <now@bitwi.se> -" Latest Revision: 2006-04-19 +" Latest Revision: 2008-07-09 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 +let s:cpo_save = &cpo +set cpo&vim + let b:undo_ftplugin = "setl com< cms< fo<" setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql + +let &cpo = s:cpo_save +unlet s:cpo_save |