diff options
author | Kabbaj Amine <amine.kabb@gmail.com> | 2016-10-02 11:22:24 +0300 |
---|---|---|
committer | Kabbaj Amine <amine.kabb@gmail.com> | 2016-10-02 11:22:24 +0300 |
commit | 81bccb28479ddd91b543ac1341066cbae314951c (patch) | |
tree | 30eca05f31fe9ef54ce709392a1e9d6792d0eb2f /README.md | |
parent | abd1249e74e6186a14d07d28db69bca4994674b9 (diff) | |
download | ale-81bccb28479ddd91b543ac1341066cbae314951c.zip |
Add an option for defining text of signs
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -83,12 +83,22 @@ Each directory within corresponds to a particular filetype in Vim, and each file in each directory corresponds to the name of a particular linter. ### Always showing gutter + You can keep the sign gutter open at all times by setting the g:ale_sign_column_always to 1 ```vim let g:ale_sign_column_always = 1 ``` +### Customize signs + +Use these options to specify what text should be used for signs: + +```vim +let g:ale_sign_error = '>>' +let g:ale_sign_warning = '--' +``` + ## Installation |