diff options
author | w0rp <devw0rp@gmail.com> | 2019-04-23 21:26:16 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-04-23 21:26:25 +0100 |
commit | 01331266a84859d4b0935b81ae773ff0d7af7522 (patch) | |
tree | a3ea9871165efc259acd01d849d684bf3f1428de /plugin/ale.vim | |
parent | ce0b14979ea7429f07b6ca496333f72d93a8d013 (diff) | |
download | ale-01331266a84859d4b0935b81ae773ff0d7af7522.zip |
Close #1753 - Implement minimum viable integration with Deoplete
Diffstat (limited to 'plugin/ale.vim')
-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 ad3d3e56..cf39d632 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#GetCompletions(1) +command! -bar ALEComplete :call ale#completion#GetCompletions('ale-manual') " <Plug> mappings for commands nnoremap <silent> <Plug>(ale_previous) :ALEPrevious<Return> |