diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-01-08 14:27:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-08 14:27:04 +0000 |
commit | 84475ff6f16d2f10cba7d93de2911eb37b753795 (patch) | |
tree | fbf1c1b1d04501f62384fcaa713351c4aacc93f3 /plugin/ale.vim | |
parent | 1d7acad891daad502b6c8314c137b456f3df47ff (diff) | |
parent | b1b05e6e66f84e93ebf521444e3d21500a87bcdf (diff) | |
download | ale-84475ff6f16d2f10cba7d93de2911eb37b753795.zip |
Merge pull request #2189 from jeremija/jeremija/manual-autocomplete-wo-prefix
Manually trigger autocomplete even when prefix is ""
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 4af59a91..15e50e9f 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -204,7 +204,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() +command! -bar ALEComplete :call ale#completion#AlwaysGetCompletions(0) " <Plug> mappings for commands nnoremap <silent> <Plug>(ale_previous) :ALEPrevious<Return> |