diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-12-27 23:59:26 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-12-27 23:59:26 +0100 |
commit | c8c8849267503b2d2d6d821047ee8619c7821728 (patch) | |
tree | cbba4e440cd1f18e9f5743acbd907f2169aa4f28 /runtime/ftplugin | |
parent | 5976f8ff00efcb3e155a89346e44f2ad43d2405a (diff) | |
download | vim-git-c8c8849267503b2d2d6d821047ee8619c7821728.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/cfg.vim | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/runtime/ftplugin/cfg.vim b/runtime/ftplugin/cfg.vim new file mode 100644 index 000000000..b5835ba7a --- /dev/null +++ b/runtime/ftplugin/cfg.vim @@ -0,0 +1,19 @@ +" Vim filetype plugin file +" Language: Configuration File +" Maintainer: Christian Brabandt <cb@256bit.org> +" Latest Revision: 2018-12-24 + +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 cms< fo<" + +setlocal commentstring=#\ %s formatoptions-=t formatoptions+=croql + +let &cpo = s:cpo_save +unlet s:cpo_save |