From 0f96b61825210b514b33031ce7c4825922e4a5b8 Mon Sep 17 00:00:00 2001 From: w0rp Date: Tue, 4 Oct 2016 23:00:15 +0100 Subject: [PATCH] Fix a bug with loading the wrong user option for warning signs. --- plugin/ale/sign.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/ale/sign.vim b/plugin/ale/sign.vim index 3d74e821..1fce84fc 100644 --- a/plugin/ale/sign.vim +++ b/plugin/ale/sign.vim @@ -25,7 +25,7 @@ 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', '--') +let g:ale_sign_warning = get(g:, 'ale_sign_warning', '--') " An offset which can be set for sign IDs. " This ID can be changed depending on what IDs are set for other plugins. let g:ale_sign_offset = get(g:, 'ale_sign_offset', 1000000)