diff options
author | w0rp <devw0rp@gmail.com> | 2020-08-09 03:18:21 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-08-09 03:18:21 +0100 |
commit | 681ca5fee8612aae5fdcf032d7d12992d1f60a3e (patch) | |
tree | 680e000ae3a8f451988eddf8cd904328371d924b /doc/ale.txt | |
parent | 2ed09f51b63f816282969cba890a34d7a20cd79b (diff) | |
download | ale-681ca5fee8612aae5fdcf032d7d12992d1f60a3e.zip |
Explain how to use ALE and coc.nvim together
Diffstat (limited to 'doc/ale.txt')
-rw-r--r-- | doc/ale.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ale.txt b/doc/ale.txt index ef256752..c7664da0 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -246,7 +246,7 @@ A plugin might integrate its own checks with ALE like so: > function! WorkDone(buffer, results) abort " Send results to ALE after they have been collected. - call ale#other_source#ShowResults(buffer, 'some-name', a:results) + call ale#other_source#ShowResults(a:buffer, 'some-name', a:results) endfunction < |