#309 Add an option for changing the sign column color when problems are detected

This commit is contained in:
w0rp 2017-05-21 22:42:27 +01:00
parent 3a289dab6b
commit b67c103d06
4 changed files with 73 additions and 0 deletions

View file

@ -108,6 +108,10 @@ let g:ale_keep_list_window_open = get(g:, 'ale_keep_list_window_open', 0)
" This is enabled by default only if the 'signs' feature exists.
let g:ale_set_signs = get(g:, 'ale_set_signs', has('signs'))
" This flag can be set to 1 to enable changing the sign column colors when
" there are errors.
call ale#Set('change_sign_column_color', 0)
" This flag can be set to 0 to disable setting error highlights.
let g:ale_set_highlights = get(g:, 'ale_set_highlights', has('syntax'))