commit | 8e52a593765172de0f4d98a849d6d89d024b971e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri May 18 21:49:28 2012 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri May 18 21:49:28 2012 +0200 |
tree | 835eaca57a3432e958820b1a994ffa410dd24572 | |
parent | bd1d5608952dd1c61f99f9b2f605610405415622 [diff] [blame] |
Fix more 'cpo' issues in runtime files.
diff --git a/runtime/ftplugin/occam.vim b/runtime/ftplugin/occam.vim index 9806318..e9b7c01 100644 --- a/runtime/ftplugin/occam.vim +++ b/runtime/ftplugin/occam.vim
@@ -9,6 +9,8 @@ finish endif let b:did_ftplugin = 1 +let s:keepcpo= &cpo +set cpo&vim "{{{ Indent settings " Set shift width for indent @@ -42,3 +44,6 @@ \ . " formatoptions< comments< textwidth<" \ . "| unlet! b:browsefiler" "}}} + +let &cpo = s:keepcpo +unlet s:keepcpo