Fix a bug with loading the wrong user option for warning signs.

This commit is contained in:
w0rp 2016-10-04 23:00:15 +01:00
parent b99cba7b0c
commit 0f96b61825
1 changed files with 1 additions and 1 deletions

View File

@ -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)