diff options
| author | Bram Moolenaar <Bram@vim.org> | 2022-09-10 13:13:14 +0100 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2022-09-10 13:13:14 +0100 |
| commit | 71b6d3397649fed68ef587aa863fcbdf5fdb057a (patch) | |
| tree | fe1de667a3a2f1a69ad6533ab87be8e8c5c33273 /runtime/ftplugin/gitattributes.vim | |
| parent | 2da11a4124989e3be917fa8024025d2e1452b363 (diff) | |
| download | vim-git-71b6d3397649fed68ef587aa863fcbdf5fdb057a.tar.gz | |
Update runtime files
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 000000000..2025d009d --- /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<' |
