diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-09-10 14:54:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-10 14:54:13 +0200 |
commit | 91a2e7a571c8615f2ffd9046687a6b438356db2b (patch) | |
tree | 802e0f70f6723283dc143f314357cf90ce72b7ab /runtime/ftplugin/gitattributes.vim | |
parent | 2a1c65b330c1cf65207cdd992529ad3bb1a197a4 (diff) | |
download | rneovim-91a2e7a571c8615f2ffd9046687a6b438356db2b.tar.gz rneovim-91a2e7a571c8615f2ffd9046687a6b438356db2b.tar.bz2 rneovim-91a2e7a571c8615f2ffd9046687a6b438356db2b.zip |
vim-patch:71b6d3397649 (#20144)
Update runtime files
https://github.com/vim/vim/commit/71b6d3397649fed68ef587aa863fcbdf5fdb057a
Diffstat (limited to 'runtime/ftplugin/gitattributes.vim')
-rw-r--r-- | runtime/ftplugin/gitattributes.vim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/runtime/ftplugin/gitattributes.vim b/runtime/ftplugin/gitattributes.vim new file mode 100644 index 0000000000..2025d009d2 --- /dev/null +++ b/runtime/ftplugin/gitattributes.vim @@ -0,0 +1,13 @@ +" Vim filetype plugin +" Language: git attributes +" Maintainer: ObserverOfTime <chronobserver@disroot.org> +" Last Change: 2022 Sep 08 + +if exists('b:did_ftplugin') + finish +endif +let b:did_ftplugin = 1 + +setl comments=:# commentstring=#\ %s + +let b:undo_ftplugin = 'setl com< cms<' |