Fix #249 Mention how to clear sign background colors in the README

This commit is contained in:
w0rp 2017-01-30 15:22:14 +00:00
parent aff56e69a9
commit 03bab835d9
1 changed files with 9 additions and 0 deletions

View File

@ -238,6 +238,15 @@ let g:ale_sign_error = '>>'
let g:ale_sign_warning = '--'
```
ALE sets some background colors automatically for warnings and errors
in the sign gutter, with the names `ALEErrorSign` and `ALEWarningSign`.
These colors can be customised, or even removed completely:
```vim
highlight clear ALEErrorSign
highlight clear ALEWarningSign
```
<a name="faq-statusline"></a>
### 4.iv. How can I show errors or warnings in my statusline?