From 81bccb28479ddd91b543ac1341066cbae314951c Mon Sep 17 00:00:00 2001 From: Kabbaj Amine Date: Sun, 2 Oct 2016 11:22:24 +0300 Subject: Add an option for defining text of signs --- plugin/ale/sign.vim | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'plugin') diff --git a/plugin/ale/sign.vim b/plugin/ale/sign.vim index 6f07703d..46d74fc6 100644 --- a/plugin/ale/sign.vim +++ b/plugin/ale/sign.vim @@ -20,9 +20,15 @@ if !hlexists('ALEWarning') highlight link ALEWarning SpellCap endif +" Global variables for signs +let g:ale_sign_error = get(g:, 'ale_sign_error', '>>') +let g:ale_sign_warning = get(g:, 'ale_sign_error', '--') + " Signs show up on the left for error markers. -sign define ALEErrorSign text=>> texthl=ALEErrorSign -sign define ALEWarningSign text=-- texthl=ALEWarningSign +execute 'sign define ALEErrorSign text=' . g:ale_sign_error + \ . ' texthl=ALEErrorSign' +execute 'sign define ALEWarningSign text=' . g:ale_sign_warning + \ . ' texthl=ALEWarningSign' " This function will set the signs which show up on the left. function! ale#sign#SetSigns(buffer, loclist) -- cgit v1.2.3