diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-17 14:29:51 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-17 14:29:57 +0000 |
commit | 5635b3c86437f22123a19601bebcaa335c1ceb2e (patch) | |
tree | 9610581c9bea3176e67d1e65f66ef4f51db12782 /doc | |
parent | 22ec81e1de48cf442238dac9f85a579e04bf70cb (diff) | |
download | ale-5635b3c86437f22123a19601bebcaa335c1ceb2e.zip |
Fix #741 - Set highlights for entire lines when signs are disabled
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale.txt | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/doc/ale.txt b/doc/ale.txt index 697c592e..7b9deeee 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -1149,6 +1149,17 @@ g:ale_set_highlights *g:ale_set_highlights* |ALEStyleError| - Items with `'type': 'E'` and `'sub_type': 'style'` |ALEStyleWarning| - Items with `'type': 'W'` and `'sub_type': 'style'` + When |g:ale_set_signs| is set to `0`, the following highlights for entire + lines will be set. + + |ALEErrorLine| - All items with `'type': 'E'` + |ALEWarningLine| - All items with `'type': 'W'` + |ALEInfoLine| - All items with `'type': 'I'` + + Vim can only highlight the characters up to the last column in a buffer for + match highlights, whereas the line highlights when signs are enabled will + run to the edge of the screen. + g:ale_set_loclist *g:ale_set_loclist* @@ -1366,7 +1377,10 @@ ALEErrorLine *ALEErrorLine* Default: Undefined - The highlight for lines where error signs appear. See |g:ale_set_signs|. + The highlight for an entire line where errors appear. Only the first + line for a problem will be highlighted. + + See |g:ale_set_signs| and |g:ale_set_highlights|. ALEErrorSign *ALEErrorSign* @@ -1394,7 +1408,10 @@ ALEInfoLine *ALEInfoLine* Default: Undefined - The highlight for lines where info signs appear. See |g:ale_set_signs|. + The highlight for entire lines where info messages appear. Only the first + line for a problem will be highlighted. + + See |g:ale_set_signs| and |g:ale_set_highlights|. ALEStyleError *ALEStyleError* @@ -1436,7 +1453,10 @@ ALEWarningLine *ALEWarningLine* Default: Undefined - The highlight for lines where warning signs appear. See |g:ale_set_signs|. + The highlight for entire lines where warnings appear. Only the first line + for a problem will be highlighted. + + See |g:ale_set_signs| and |g:ale_set_highlights|. ALEWarningSign *ALEWarningSign* |