disable autocomplete and documentation while typing
This commit is contained in:
parent
a6b46bb2c0
commit
446b6ea0bd
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ utils.opt('o', 'completeopt', 'menuone,noselect')
|
|||
|
||||
require'compe'.setup {
|
||||
enabled = true;
|
||||
autocomplete = true;
|
||||
autocomplete = false;
|
||||
debug = false;
|
||||
min_length = 1;
|
||||
preselect = 'enable';
|
||||
|
@ -18,7 +18,7 @@ require'compe'.setup {
|
|||
max_abbr_width = 1000;
|
||||
max_kind_width = 1000;
|
||||
max_menu_width = 1000000;
|
||||
documentation = true;
|
||||
documentation = false;
|
||||
|
||||
|
||||
source = {
|
||||
|
|
Loading…
Reference in a new issue