diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-02-02 18:33:47 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2020-02-02 18:34:22 -0800 |
commit | 983086f42e5841b84d5b24623a51ffc8c725e78f (patch) | |
tree | 623980adc7563cbeefd1d79e5ee3c900366f4ae5 | |
parent | 4de6a648c0aeff968b396947575e9321a4de4de0 (diff) | |
download | rneovim-983086f42e5841b84d5b24623a51ffc8c725e78f.tar.gz rneovim-983086f42e5841b84d5b24623a51ffc8c725e78f.tar.bz2 rneovim-983086f42e5841b84d5b24623a51ffc8c725e78f.zip |
checkhealth: fix accidental change [ci skip]
-rw-r--r-- | runtime/autoload/health/provider.vim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/autoload/health/provider.vim b/runtime/autoload/health/provider.vim index c0faf2e9e4..1d720b5876 100644 --- a/runtime/autoload/health/provider.vim +++ b/runtime/autoload/health/provider.vim @@ -737,11 +737,11 @@ function! s:check_perl() abort endfunction function! health#provider#check() abort - " call s:check_clipboard() - " call s:check_python(2) - " call s:check_python(3) + call s:check_clipboard() + call s:check_python(2) + call s:check_python(3) call s:check_virtualenv() - " call s:check_ruby() - " call s:check_node() - " call s:check_perl() + call s:check_ruby() + call s:check_node() + call s:check_perl() endfunction |