diff options
author | w0rp <devw0rp@gmail.com> | 2019-03-08 21:32:05 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-03-08 21:32:05 +0000 |
commit | 413529f603547bad184358db06f8388047a5c9aa (patch) | |
tree | c31cdb07b568077bcbc11c8c7fad81d2699a60db /plugin | |
parent | be2c0c3af5e9685b3e1235fa062cb148d740e830 (diff) | |
download | ale-413529f603547bad184358db06f8388047a5c9aa.zip |
Fix #2326 - ALEComplete no longer replaces completeopt
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 1df473c5..ad3d3e56 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -216,7 +216,7 @@ command! -bar ALEDocumentation :call ale#hover#ShowDocumentationAtCursor() " Search for appearances of a symbol, such as a type name or function name. command! -nargs=1 ALESymbolSearch :call ale#symbol#Search(<q-args>) -command! -bar ALEComplete :call ale#completion#AlwaysGetCompletions(0) +command! -bar ALEComplete :call ale#completion#GetCompletions(1) " <Plug> mappings for commands nnoremap <silent> <Plug>(ale_previous) :ALEPrevious<Return> |