diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-17 11:26:14 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-17 11:26:21 +0100 |
commit | 15df679765fb4365c7a76f53866033da862c4c4e (patch) | |
tree | 6eaf3265bab9fb67495f24e46c6f69c52e71290f | |
parent | 27aad958d61d77ed21678f513f69dd188eadbc75 (diff) | |
download | ale-15df679765fb4365c7a76f53866033da862c4c4e.zip |
#115 - Make ALE shut up about not being able to load linter files which don't exist when it works anyway.
-rw-r--r-- | autoload/ale/linter.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/linter.vim b/autoload/ale/linter.vim index 7a5c8d51..e6dc9b16 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. |