diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-10-29 17:41:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 17:41:22 +0200 |
commit | 6884f017b53369d6c9b06ddd3aedeb642dbd24a8 (patch) | |
tree | b321f2eed50fdc773ff616fd1105c908d31b1261 /runtime/ftplugin | |
parent | 356244d50ba01c63b3ac33057a69462c4029612c (diff) | |
download | rneovim-6884f017b53369d6c9b06ddd3aedeb642dbd24a8.tar.gz rneovim-6884f017b53369d6c9b06ddd3aedeb642dbd24a8.tar.bz2 rneovim-6884f017b53369d6c9b06ddd3aedeb642dbd24a8.zip |
vim-patch:partial:6ebe4f970b8b (#20860)
Update runtime files
https://github.com/vim/vim/commit/6ebe4f970b8b398087076a72a7aae6e680fb92da
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/apache.vim | 16 | ||||
-rw-r--r-- | runtime/ftplugin/openvpn.vim | 14 |
2 files changed, 30 insertions, 0 deletions
diff --git a/runtime/ftplugin/apache.vim b/runtime/ftplugin/apache.vim new file mode 100644 index 0000000000..9f612f5447 --- /dev/null +++ b/runtime/ftplugin/apache.vim @@ -0,0 +1,16 @@ +" Vim filetype plugin +" Language: apache configuration file +" Maintainer: Per Juchtmans <dubgeiser+vimNOSPAM@gmail.com> +" Last Change: 2022 Oct 22 + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +setlocal comments=:# +setlocal commentstring=#\ %s + +let b:undo_ftplugin = "setlocal comments< commentstring<" + +" vim: nowrap sw=2 sts=2 ts=8 noet: diff --git a/runtime/ftplugin/openvpn.vim b/runtime/ftplugin/openvpn.vim new file mode 100644 index 0000000000..56c0f25b39 --- /dev/null +++ b/runtime/ftplugin/openvpn.vim @@ -0,0 +1,14 @@ +" Vim filetype plugin +" Language: OpenVPN +" Maintainer: ObserverOfTime <chronobserver@disroot.org> +" Last Change: 2022 Oct 16 + +if exists('b:did_ftplugin') + finish +endif +let b:did_ftplugin = 1 + +setlocal iskeyword+=-,.,/ +setlocal comments=:#,:; commentstring=#%s + +let b:undo_ftplugin = 'setl isk< com< cms<' |