diff options
author | w0rp <devw0rp@gmail.com> | 2019-05-21 13:53:09 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-05-21 13:53:09 +0100 |
commit | 3e3801e81ef70d3b35b7c527fbd1b4f62d50bae5 (patch) | |
tree | 79ce1ca62632864002e002bef38e957fe46025bb /doc/ale.txt | |
parent | 89db85121c001fc60787647f012978a2328816a5 (diff) | |
download | ale-3e3801e81ef70d3b35b7c527fbd1b4f62d50bae5.zip |
Revert "Fix #2492 - Remove all Deoplete support for now"
This reverts commit 975cc7af8fbabe234a220c84e56b7ff719d8d959.
Diffstat (limited to 'doc/ale.txt')
-rw-r--r-- | doc/ale.txt | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/doc/ale.txt b/doc/ale.txt index ac3661fc..4bb34947 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -334,7 +334,14 @@ ALE offers support for automatic completion of code while you type. Completion is only supported while at least one LSP linter is enabled. ALE will only suggest symbols provided by the LSP servers. -ALE offers its own completion implementation, which does not require any + *ale-deoplete-integration* + +ALE integrates with Deoplete for offering automatic completion data. ALE's +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 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 |g:ale_completion_enabled| to `1`. This setting must be set to `1` before ALE @@ -355,7 +362,8 @@ If you don't like some of the suggestions you see, you can filter them out with |g:ale_completion_excluded_words| or |b:ale_completion_excluded_words|. The |ALEComplete| command can be used to show completion suggestions manually, -even when |g:ale_completion_enabled| is set to `0`. +even when |g:ale_completion_enabled| is set to `0`. For manually requesting +completion information with Deoplete, consult Deoplete's documentation. *ale-completion-completeopt-bug* |