diff options
author | w0rp <w0rp@users.noreply.github.com> | 2016-10-02 16:19:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-02 16:19:03 +0200 |
commit | 40c01d2f14a6b24ce196a31ac0027ee262723fc4 (patch) | |
tree | d1c767967399d2072599a561ae46c442360231e5 /plugin | |
parent | 21e91d7572bc42145a213dbd6ba5a7d620fef410 (diff) | |
parent | 81bccb28479ddd91b543ac1341066cbae314951c (diff) | |
download | ale-40c01d2f14a6b24ce196a31ac0027ee262723fc4.zip |
Merge pull request #21 from KabbAmine/sign-custom
Add an option for defining text of signs
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale/sign.vim | 10 |
1 files changed, 8 insertions, 2 deletions
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) |