summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ale-asm.txt8
-rw-r--r--doc/ale.txt26
2 files changed, 31 insertions, 3 deletions
diff --git a/doc/ale-asm.txt b/doc/ale-asm.txt
index 63b5441f..a97c6d00 100644
--- a/doc/ale-asm.txt
+++ b/doc/ale-asm.txt
@@ -5,6 +5,14 @@ ALE ASM Integration *ale-asm-options*
===============================================================================
gcc *ale-asm-gcc*
+g:ale_asm_gcc_executable *g:ale_asm_gcc_executable*
+ *b:ale_asm_gcc_executable*
+ Type: |String|
+ Default: `'gcc'`
+
+This variable can be changed to use a different executable for gcc.
+
+
g:ale_asm_gcc_options *g:ale_asm_gcc_options*
*b:ale_asm_gcc_options*
Type: |String|
diff --git a/doc/ale.txt b/doc/ale.txt
index 4fb71004..04f187dc 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -1150,6 +1150,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*
@@ -1367,7 +1378,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*
@@ -1395,7 +1409,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*
@@ -1437,7 +1454,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*