aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/wildignore.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/plugin/wildignore.vim')
-rw-r--r--vim/plugin/wildignore.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/plugin/wildignore.vim b/vim/plugin/wildignore.vim
index b10eaa01..a08e0251 100644
--- a/vim/plugin/wildignore.vim
+++ b/vim/plugin/wildignore.vim
@@ -1,7 +1,7 @@
" Don't complete certain files that I'm not likely to want to manipulate from
" within Vim; this is kind of expensive to reload, so I've made it a plugin
" with a load guard
-if v:version < 700 || !has('wildignore')
+if &compatible || v:version < 700 || !has('wildignore')
finish
endif
if exists('g:loaded_wildmenu')