diff options
author | w0rp <devw0rp@gmail.com> | 2017-02-10 19:34:44 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-02-10 19:34:44 +0000 |
commit | 926cd1a9533a816b0dbd7f6ca2ccbd2cd9cc2399 (patch) | |
tree | 85041ee5b7e286e3d8c54c918509c932f3ab4c43 /plugin/ale.vim | |
parent | c528ab1eaa2fa951bde708a094274a4a05e03ebb (diff) | |
download | ale-926cd1a9533a816b0dbd7f6ca2ccbd2cd9cc2399.zip |
Fix #283 Add an option for using ch_sendraw(), which can be better for some users
Diffstat (limited to 'plugin/ale.vim')
-rw-r--r-- | plugin/ale.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index d65a99cb..13c681a0 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -66,6 +66,10 @@ let g:ale_lint_on_save = get(g:, 'ale_lint_on_save', 0) " should be used instead. let g:ale_enabled = get(g:, 'ale_enabled', 1) +" This flag can be used to force ALE to send buffer data using ch_sendraw +" in Vim 8. This works better for some users. +let g:ale_use_ch_sendraw = get(g:, 'ale_use_ch_sendraw', has('win32')) + " These flags dictates if ale uses the quickfix or the loclist (loclist is the " default, quickfix overrides loclist). let g:ale_set_loclist = get(g:, 'ale_set_loclist', 1) |