diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-11-29 23:26:52 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-11-29 23:26:52 +1300 |
commit | dc59d7e74635f9a56fef9049e34411d6ef535650 (patch) | |
tree | 41063a96c38500ede7ba3f5dd31b83e9000d46ea /vim/after/ftplugin/help.vim | |
parent | Simplify after/ftplugin for C (diff) | |
download | dotfiles-dc59d7e74635f9a56fef9049e34411d6ef535650.tar.gz dotfiles-dc59d7e74635f9a56fef9049e34411d6ef535650.zip |
Remove boilerplate after/ftplugin load guards
I'm likely going to move away from Vim 6.0 support, at least for all of
this filetype stuff.
We will keep the one filetype load guard we actually need, which is the
HTML one, to stop plugins like markdown.vim from loading it.
Diffstat (limited to 'vim/after/ftplugin/help.vim')
-rw-r--r-- | vim/after/ftplugin/help.vim | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/vim/after/ftplugin/help.vim b/vim/after/ftplugin/help.vim index 71ad3a8d..ae032344 100644 --- a/vim/after/ftplugin/help.vim +++ b/vim/after/ftplugin/help.vim @@ -1,8 +1,3 @@ -" Extra configuration for Vim help files -if &filetype !=# 'help' || v:version < 700 - finish -endif - " This variable had the wrong name before Vim 7.1 if v:version == 700 && exists('b:undo_plugin') let b:undo_ftplugin = b:undo_plugin |