summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-05-21 22:42:27 +0100
committerw0rp <devw0rp@gmail.com>2017-05-21 22:42:27 +0100
commitb67c103d0604504ce957fdeff6ecc8162d085529 (patch)
tree1c0f87f5f0e2675677e4ed1bb62c0ec4a11e21c5 /plugin
parent3a289dab6b6581586d42204e5e8d56a1489aa75c (diff)
downloadale-b67c103d0604504ce957fdeff6ecc8162d085529.zip
#309 Add an option for changing the sign column color when problems are detected
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim
index 92c1562e..cf97032a 100644
--- a/plugin/ale.vim
+++ b/plugin/ale.vim
@@ -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'))