diff options
author | w0rp <devw0rp@gmail.com> | 2017-02-09 09:42:17 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-02-09 09:42:17 +0000 |
commit | 73e0f87eba043594668d9b34b63d489c59140c4f (patch) | |
tree | 32184bc5649083f1790efe304315e2fe3b4ee5cf /doc | |
parent | bf2075cd0cd6a9e1ea535fe66a7d0483bb5c97a9 (diff) | |
download | ale-73e0f87eba043594668d9b34b63d489c59140c4f.zip |
Document the command_chain optionv1.1.0
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale.txt | 37 |
1 files changed, 34 insertions, 3 deletions
diff --git a/doc/ale.txt b/doc/ale.txt index 4bed2e02..28b5eee2 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -1005,15 +1005,40 @@ ale#linter#Define(filetype, linter) *ale#linter#Define()* check, and will produce the lines of output given to the `callback`. - Either this or the `command_callback` argument must - be provided. - `command_callback` A |String| or |Funcref| for a callback function accepting a buffer number. A |String| should be returned for a command to run. This can be used in place of `command` when more complicated processing is needed. + `command_chain` A |List| of |Dictionary| items defining a series + of commands to be run. At least one |Dictionary| + should be provided. Each Dictionary must contain the + key `callback`, defining a |String| or |Funcref| for + a function returning a |String| for a command to run. + + The callback functions for each command after the + first command in in the chain should accept two + arguments `(buffer, output)`, a buffer number and a + |List| of lines of output from the previous command + in the chain. + + The first callback function in a chain accepts only + a `(buffer)` argument, as there are no previous + commands to run which return `output`. + + Commands in the chain will all use the + `output_stream` value provided in the root + |Dictionary|. Each command in the chain can also + provide an `output_stream` key to override this value. + See the `output_stream` description for more + information. + + The Vim buffer being checked for linter will only + be sent to the final command in the chain. Previous + commands in the chain will receive no input from + stdin. + `output_stream` A |String| for the output stream the lines of output should be read from for the command which is run. The accepted values are `'stdout'`, `'stderr'`, and @@ -1023,6 +1048,12 @@ ale#linter#Define(filetype, linter) *ale#linter#Define()* instead of stdout. The option `'both'` will read from both stder and stdout at the same time. + Only one of `command`, `command_callback`, or `command_chain` should be + specified. `command_callback` is generally recommended when a command string + needs to be generated dynamically, or any global options are used. + `command_chain` is recommended where any system calls need to be made to + retrieve some kind of information before running the final command. + Some programs for checking for errors are not capable of receiving input from stdin, as is required by ALE. To remedy this, a wrapper script is provided named in the variable |g:ale#util#stdin_wrapper|. This variable |