diff options
author | Jerko Steiner <jerko.steiner@gmail.com> | 2019-01-08 15:09:59 +0100 |
---|---|---|
committer | Jerko Steiner <jerko.steiner@gmail.com> | 2019-01-08 15:10:03 +0100 |
commit | b1b05e6e66f84e93ebf521444e3d21500a87bcdf (patch) | |
tree | cfa2a901c8c0342af9e862715c2eaff9c5a3cc3c /plugin | |
parent | 9bcf8a2336ff6f98e5032d30e17c2671d66946fe (diff) | |
download | ale-b1b05e6e66f84e93ebf521444e3d21500a87bcdf.zip |
Optimize ale#completion#Filter when prefix is ""
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 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> |