summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDonnie West <igneo676@gmail.com>2019-08-17 12:40:05 -0500
committerw0rp <w0rp@users.noreply.github.com>2019-08-17 18:40:05 +0100
commit5388ff1d54e05cfaa9429cdbf9a2cacba94d190f (patch)
tree33d333acf8d89cb59a407b1549701007f51ce5a8 /doc
parent28c93ab1854ef41a46855401cc4addbaf7dfb9d4 (diff)
downloadale-5388ff1d54e05cfaa9429cdbf9a2cacba94d190f.zip
Add asyncomplete.vim Support (#2627)
Diffstat (limited to 'doc')
-rw-r--r--doc/ale.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/ale.txt b/doc/ale.txt
index 5541236f..a54bc8bb 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -341,6 +341,17 @@ completion source for Deoplete is named `'ale'`, and should enabled
automatically if Deoplete is enabled and configured correctly. Deoplete
integration should not be combined with ALE's own implementation.
+ *ale-asyncomplete-integration*
+
+ALE additionally integrates with asyncomplete.vim for offering automatic
+completion data. ALE's asyncomplete source requires registration and should
+use the defaults provided by the|asyncomplete#sources#ale#get_source_options| function >
+
+ " Use ALE's function for asyncomplete defaults
+ au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#ale#get_source_options({
+ \ 'priority': 10, " Provide your own overrides here
+ \ }))
+>
ALE also offers its own completion implementation, which does not require any
other plugins. Suggestions will be made while you type after completion is
enabled. ALE's own completion implementation can be enabled by setting