summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-02-10 19:34:44 +0000
committerw0rp <devw0rp@gmail.com>2017-02-10 19:34:44 +0000
commit926cd1a9533a816b0dbd7f6ca2ccbd2cd9cc2399 (patch)
tree85041ee5b7e286e3d8c54c918509c932f3ab4c43 /doc
parentc528ab1eaa2fa951bde708a094274a4a05e03ebb (diff)
downloadale-926cd1a9533a816b0dbd7f6ca2ccbd2cd9cc2399.zip
Fix #283 Add an option for using ch_sendraw(), which can be better for some users
Diffstat (limited to 'doc')
-rw-r--r--doc/ale.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/ale.txt b/doc/ale.txt
index a4d476c3..4a8f0ecb 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -395,6 +395,22 @@ g:ale_statusline_format *g:ale_statusline_format*
- The 3rd element is for when no errors are detected
+g:ale_use_ch_sendraw *g:ale_use_ch_sendraw*
+
+ Type: |Number|
+ Default: `has('win32')`
+
+ This option only applies to Vim, and is ignored when the plugin is run
+ in NeoVim.
+
+ When this option is set to `1`, ALE will use |ch_sendraw()| for sending text
+ buffers to jobs, instead of setting the `in_io` option to `'buffer'` for
+ |job_start()|. See |in_io-buffer| for more information on this Vim option.
+
+ Using |ch_sendraw()| instead may lead to better performance or stability in
+ some cases. Typically for Linux users, `in_io` seems to be a better option.
+
+
g:ale_warn_about_trailing_whitespace *g:ale_warn_about_trailing_whitespace*
Type: |Number|