summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2016-10-04 23:00:15 +0100
committerw0rp <devw0rp@gmail.com>2016-10-04 23:00:15 +0100
commit0f96b61825210b514b33031ce7c4825922e4a5b8 (patch)
tree5e6eb81b5ae6ce5896b29dee4e4de1e15f45e1b7 /plugin
parentb99cba7b0c8a31724f968519c7efa6d6033e939a (diff)
downloadale-0f96b61825210b514b33031ce7c4825922e4a5b8.zip
Fix a bug with loading the wrong user option for warning signs.
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale/sign.vim2
1 files changed, 1 insertions, 1 deletions
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)