diff options
author | w0rp <devw0rp@gmail.com> | 2019-02-21 21:24:41 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-02-21 21:24:41 +0000 |
commit | ffa45fa3fb44ade28c64aa8f0a21acd71c903a2a (patch) | |
tree | 350f4b45b17a1862844a14856c4063c0d219f0bd /doc | |
parent | a8b987a1c31f297622f0038230d23404e7c2ad50 (diff) | |
download | ale-ffa45fa3fb44ade28c64aa8f0a21acd71c903a2a.zip |
#2132 - Implement deferred command handling for linters
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/ale.txt b/doc/ale.txt index 22639251..083b0507 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -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`. |