diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-05-18 21:49:28 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-05-18 21:49:28 +0200 |
commit | 8e52a593765172de0f4d98a849d6d89d024b971e (patch) | |
tree | 835eaca57a3432e958820b1a994ffa410dd24572 /runtime/ftplugin/sql.vim | |
parent | bd1d5608952dd1c61f99f9b2f605610405415622 (diff) | |
download | vim-git-8e52a593765172de0f4d98a849d6d89d024b971e.tar.gz |
Fix more 'cpo' issues in runtime files.
Diffstat (limited to 'runtime/ftplugin/sql.vim')
-rw-r--r-- | runtime/ftplugin/sql.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ftplugin/sql.vim b/runtime/ftplugin/sql.vim index f6084b703..c13dcf186 100644 --- a/runtime/ftplugin/sql.vim +++ b/runtime/ftplugin/sql.vim @@ -2,7 +2,7 @@ " Language: SQL (Common for Oracle, Microsoft SQL Server, Sybase) " Version: 8.0 " Maintainer: David Fishburn <dfishburn dot vim at gmail dot com> -" Last Change: 2012 Mar 11 +" Last Change: 2012 May 18 " Download: http://vim.sourceforge.net/script.php?script_id=454 " For more details please use: @@ -67,7 +67,7 @@ if exists("b:did_ftplugin") endif let s:save_cpo = &cpo -set cpo= +set cpo&vim " Disable autowrapping for code, but enable for comments " t Auto-wrap text using textwidth |