health.vim: Do not check intentionally disabled providers.

Closes #6107
This commit is contained in:
Justin M. Keyes
2017-02-13 21:55:12 +01:00
parent 4a511de881
commit 9451647d9b
4 changed files with 37 additions and 25 deletions

View File

@@ -4,7 +4,7 @@
" Associating the plugin with the Python host is the first step because plugins
" will be passed as command-line arguments
if exists('g:loaded_python_provider')
if get(g:, 'loaded_python_provider', 0)
finish
endif
let g:loaded_python_provider = 1