From 9451647d9b9218f679afdf26edddab383b0898a7 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 13 Feb 2017 21:55:12 +0100 Subject: health.vim: Do not check intentionally disabled providers. Closes #6107 --- runtime/autoload/provider/python.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/autoload/provider/python.vim') diff --git a/runtime/autoload/provider/python.vim b/runtime/autoload/provider/python.vim index b99a046375..052172223f 100644 --- a/runtime/autoload/provider/python.vim +++ b/runtime/autoload/provider/python.vim @@ -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 -- cgit