Shougo / neocomplcache.vim

Ultimate auto-completion system for Vim.
http://www.vim.org/scripts/script.php?script_id=2620
1.72k stars 135 forks source link

How to not automatically show popup #486

Closed fazlearefin closed 10 years ago

fazlearefin commented 10 years ago

How do I configure neocomplcache so that the popups don't pop up automatically in insert mode? I just want the popup to pop up only when I press a combination of Ctrl and some other character. Can this be done?

I tried the following but it did not help: " Disable AutoComplPop. let g:acp_enableAtStartup = 0

Whenever I am insert mode and use the arrow keys to navigate through the file these popups show up and if I am not careful auto-completes existing variables which is driving me nuts.

Thanks.

ujihisa commented 10 years ago

:h NeoComplCacheLock

fazlearefin commented 10 years ago

Thanks!