summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2016-10-17 11:26:14 +0100
committerw0rp <devw0rp@gmail.com>2016-10-17 11:26:21 +0100
commit15df679765fb4365c7a76f53866033da862c4c4e (patch)
tree6eaf3265bab9fb67495f24e46c6f69c52e71290f /autoload
parent27aad958d61d77ed21678f513f69dd188eadbc75 (diff)
downloadale-15df679765fb4365c7a76f53866033da862c4c4e.zip
#115 - Make ALE shut up about not being able to load linter files which don't exist when it works anyway.
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/linter.vim2
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.