diff options
author | Teddy Wing | 2017-04-29 08:32:58 +0200 |
---|---|---|
committer | Teddy Wing | 2017-04-29 08:32:58 +0200 |
commit | b38d6267a7a20f2e78a3149809192f6f6e2ddeb3 (patch) | |
tree | 2e7c035a398c40354e54df1bfe121a070d2e8bca /ftplugin | |
parent | 785f9d97199c02051791bdf09e81fe2a47b97aec (diff) | |
download | dotvim-b38d6267a7a20f2e78a3149809192f6f6e2ddeb3.tar.bz2 |
Add ftplugin/gitcommit_gitcha.vim
Unlet `b:did_ftplugin` to allow 'vim-gitcha' to work. By default we
override `b:did_ftplugin` to disable filetype plugins, but here we want
the ftplugin to work.
Diffstat (limited to 'ftplugin')
-rw-r--r-- | ftplugin/gitcommit_gitcha.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ftplugin/gitcommit_gitcha.vim b/ftplugin/gitcommit_gitcha.vim new file mode 100644 index 0000000..3f64fa2 --- /dev/null +++ b/ftplugin/gitcommit_gitcha.vim @@ -0,0 +1,3 @@ +if exists('b:did_ftplugin') + unlet b:did_ftplugin +endif |