diff options
Diffstat (limited to 'ftplugin/vifm-rename.vim')
-rw-r--r-- | ftplugin/vifm-rename.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ftplugin/vifm-rename.vim b/ftplugin/vifm-rename.vim index b7d0ed26..e806e212 100644 --- a/ftplugin/vifm-rename.vim +++ b/ftplugin/vifm-rename.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'vifm') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vifm') == -1 " Filetype plugin for vifm rename buffer " Maintainer: xaizek <xaizek@posteo.net> " Last Change: October 05, 2014 @@ -60,3 +57,4 @@ setlocal cursorbind setlocal scrollbind " vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : +endif |