Fix #560 #763 - Silence errors for setting signs, and do nothing for dirvish

This commit is contained in:
w0rp 2017-07-16 01:15:07 +01:00
parent 15c48650e7
commit 4fa66ab627
2 changed files with 11 additions and 5 deletions

View file

@ -55,7 +55,13 @@ let g:ale_buffer_info = {}
" This option prevents ALE autocmd commands from being run for particular
" filetypes which can cause issues.
let g:ale_filetype_blacklist = ['nerdtree', 'unite', 'tags', 'qf']
let g:ale_filetype_blacklist = [
\ 'dirvish',
\ 'nerdtree',
\ 'qf',
\ 'tags',
\ 'unite',
\]
" This Dictionary configures which linters are enabled for which languages.
let g:ale_linters = get(g:, 'ale_linters', {})