diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-07-29 02:54:47 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-07-29 20:50:07 +0200 |
commit | 4cab90ad8c2f82dbdea71cf240384c5c3ae92d4d (patch) | |
tree | e94934f4d226fde264a4d23c888a860b0e32676f /runtime/ftplugin | |
parent | b3d4e2d6dcdc65ec1bbc1df6144d19b5595b0aa3 (diff) | |
download | rneovim-4cab90ad8c2f82dbdea71cf240384c5c3ae92d4d.tar.gz rneovim-4cab90ad8c2f82dbdea71cf240384c5c3ae92d4d.tar.bz2 rneovim-4cab90ad8c2f82dbdea71cf240384c5c3ae92d4d.zip |
vim-patch:c8c884926750
Update runtime files.
https://github.com/vim/vim/commit/c8c8849267503b2d2d6d821047ee8619c7821728
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 0000000000..b5835ba7a9 --- /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 |