diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-13 21:55:12 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-02-13 22:21:23 +0100 |
commit | 9451647d9b9218f679afdf26edddab383b0898a7 (patch) | |
tree | 6b28ad5dd8a530e1e2b03354f9fa1521c2cf90f3 /runtime/autoload/provider/python.vim | |
parent | 4a511de881efcf9b759c7babdeb0e31242d62c2e (diff) | |
download | rneovim-9451647d9b9218f679afdf26edddab383b0898a7.tar.gz rneovim-9451647d9b9218f679afdf26edddab383b0898a7.tar.bz2 rneovim-9451647d9b9218f679afdf26edddab383b0898a7.zip |
health.vim: Do not check intentionally disabled providers.
Closes #6107
Diffstat (limited to 'runtime/autoload/provider/python.vim')
-rw-r--r-- | runtime/autoload/provider/python.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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 |