From 15df679765fb4365c7a76f53866033da862c4c4e Mon Sep 17 00:00:00 2001 From: w0rp Date: Mon, 17 Oct 2016 11:26:14 +0100 Subject: [PATCH] #115 - Make ALE shut up about not being able to load linter files which don't exist when it works anyway. --- autoload/ale/linter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/ale/linter.vim b/autoload/ale/linter.vim index 7a5c8d5..e6dc9b1 100644 --- a/autoload/ale/linter.vim +++ b/autoload/ale/linter.vim @@ -64,7 +64,7 @@ function! s:LoadLinters(filetype) abort endif " Load all linters for a given filetype. - execute 'runtime! ale_linters/' . a:filetype . '/*.vim' + execute 'silent! runtime! ale_linters/' . a:filetype . '/*.vim' if !has_key(s:linters, a:filetype) " If we couldn't load any linters, let everyone know.