diff options
author | w0rp <devw0rp@gmail.com> | 2017-06-18 11:34:06 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-06-18 11:34:06 +0100 |
commit | 7e79018b8ca921426bc30163c024e1558ad9f279 (patch) | |
tree | 77e6c6008ff341eb9c720fa324ef8cd807d9708c /autoload | |
parent | 629ff513ec09cc5db24d493abe125cc71e89e54e (diff) | |
download | ale-7e79018b8ca921426bc30163c024e1558ad9f279.zip |
Fix #661 - Fix line highlights for style errors and warnings
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/sign.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/ale/sign.vim b/autoload/ale/sign.vim index f4ebed8b..eee1027b 100644 --- a/autoload/ale/sign.vim +++ b/autoload/ale/sign.vim @@ -53,11 +53,11 @@ endif execute 'sign define ALEErrorSign text=' . g:ale_sign_error \ . ' texthl=ALEErrorSign linehl=ALEErrorLine' execute 'sign define ALEStyleErrorSign text=' . g:ale_sign_style_error -\ . ' texthl=ALEStyleErrorSign linehl=ALEStyleErrorSign' +\ . ' texthl=ALEStyleErrorSign linehl=ALEErrorLine' execute 'sign define ALEWarningSign text=' . g:ale_sign_warning \ . ' texthl=ALEWarningSign linehl=ALEWarningLine' execute 'sign define ALEStyleWarningSign text=' . g:ale_sign_style_warning -\ . ' texthl=ALEStyleWarningSign linehl=ALEStyleWarningSign' +\ . ' texthl=ALEStyleWarningSign linehl=ALEWarningLine' execute 'sign define ALEInfoSign text=' . g:ale_sign_info \ . ' texthl=ALEInfoSign linehl=ALEInfoLine' sign define ALEDummySign |