summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-01-30 15:22:14 +0000
committerw0rp <devw0rp@gmail.com>2017-01-30 15:22:14 +0000
commit03bab835d9799f85613ecd235506c566a20dcd63 (patch)
tree486899bf2bd2ec6353ef7102405c0c4e6cce8fe0
parentaff56e69a96e1bdf25e88132093500bac6c7310a (diff)
downloadale-03bab835d9799f85613ecd235506c566a20dcd63.zip
Fix #249 Mention how to clear sign background colors in the README
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index a0173bab..b5a6a61f 100644
--- a/README.md
+++ b/README.md
@@ -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?