aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime/autoload/health/provider.vim12
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