diff options
author | w0rp <devw0rp@gmail.com> | 2017-08-18 22:34:18 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-08-18 22:34:18 +0100 |
commit | be4347084efeb35a767eb3b33550700a1df8b041 (patch) | |
tree | e06c146ef7f454ce42bca030dcfbd0f7c24c2007 /plugin | |
parent | 8cc7cd3aa14851f0c214c54b2c8affed448399ff (diff) | |
download | ale-be4347084efeb35a767eb3b33550700a1df8b041.zip |
Increase the default maximum completion suggestions to a more useful but safe level, and filter before requesting details, which is faster
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 584295c5..a9ab88a1 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -190,7 +190,7 @@ call ale#Set('type_map', {}) " Enable automatic completion with LSP servers and tsserver call ale#Set('completion_enabled', 0) call ale#Set('completion_delay', 100) -call ale#Set('completion_max_suggestions', 20) +call ale#Set('completion_max_suggestions', 50) function! ALEInitAuGroups() abort " This value used to be a Boolean as a Number, and is now a String. |