diff options
author | w0rp <devw0rp@gmail.com> | 2019-05-16 20:11:42 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-05-16 20:11:42 +0100 |
commit | 975cc7af8fbabe234a220c84e56b7ff719d8d959 (patch) | |
tree | 04448d747affeb4f917be6a6a3f651a4e4210d97 /README.md | |
parent | d0f2a0ae940ef67649453de40c0ca3488d4dcec4 (diff) | |
download | ale-975cc7af8fbabe234a220c84e56b7ff719d8d959.zip |
Fix #2492 - Remove all Deoplete support for now
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 16 |
1 files changed, 2 insertions, 14 deletions
@@ -26,7 +26,7 @@ features, including: * Diagnostics (via Language Server Protocol linters) * Go To Definition (`:ALEGoToDefinition`) -* Completion (Built in completion support, or with Deoplete) +* Completion (Built in completion support) * Finding references (`:ALEFindReferences`) * Hover information (`:ALEHover`) * Symbol search (`:ALESymbolSearch`) @@ -159,24 +159,12 @@ ALE offers some support for completion via hijacking of omnicompletion while you type. All of ALE's completion information must come from Language Server Protocol linters, or from `tsserver` for TypeScript. -ALE integrates with [Deoplete](https://github.com/Shougo/deoplete.nvim) as a -completion source, named `'ale'`. You can configure Deoplete to only use ALE as -the source of completion information, or mix it with other sources. - -```vim -" Use ALE and also some plugin 'foobar' as completion sources for all code. -let g:deoplete#sources = {'_': ['ale', 'foobar']} -``` - -ALE also offers its own automatic completion support, which does not require any +ALE offers its own automatic completion support, which does not require any other plugins, and can be enabled by changing a setting before ALE is loaded. ```vim " Enable completion where available. " This setting must be set before ALE is loaded. -" -" You should not turn this setting on if you wish to use ALE as a completion -" source for other completion plugins, like Deoplete. let g:ale_completion_enabled = 1 ``` |