summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorJerko Steiner <jerko.steiner@gmail.com>2019-01-08 15:09:59 +0100
committerJerko Steiner <jerko.steiner@gmail.com>2019-01-08 15:10:03 +0100
commitb1b05e6e66f84e93ebf521444e3d21500a87bcdf (patch)
treecfa2a901c8c0342af9e862715c2eaff9c5a3cc3c /plugin
parent9bcf8a2336ff6f98e5032d30e17c2671d66946fe (diff)
downloadale-b1b05e6e66f84e93ebf521444e3d21500a87bcdf.zip
Optimize ale#completion#Filter when prefix is ""
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim2
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>