nvim: modules: completion: min_length needs to be 2
This is required if we want completion to trigger on identifiers like 'if' to be able to select snippets.
This commit is contained in:
parent
08df60f731
commit
e909c059a4
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ require'compe'.setup {
|
|||
enabled = true;
|
||||
autocomplete = true;
|
||||
debug = false;
|
||||
min_length = 3;
|
||||
min_length = 2;
|
||||
preselect = 'enable';
|
||||
throttle_time = 80;
|
||||
source_timeout = 200;
|
||||
|
|
Loading…
Reference in a new issue