mirror of https://github.com/dense-analysis/ale
Fix a bug with loading the wrong user option for warning signs.
This commit is contained in:
parent
b99cba7b0c
commit
0f96b61825
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue