#2132 - Implement deferred command handling for linters

This commit is contained in:
w0rp
2019-02-21 21:24:41 +00:00
parent a8b987a1c3
commit ffa45fa3fb
9 changed files with 102 additions and 11 deletions

View File

@@ -3122,7 +3122,10 @@ ale#linter#Define(filetype, linter) *ale#linter#Define()*
used in place of `executable` when more complicated
processing is needed.
`command` A |String| for an executable to run asynchronously.
`command` A |String| for a command to run asynchronously, or a
|Funcref| for a function to call for computing the
command, accepting a buffer number.
This command will be fed the lines from the buffer to
check, and will produce the lines of output given to
the `callback`.