vimtricks.wiki Concise Vim tricks, one at a time.

How do you configure insert-mode completion behavior?

Answer

set completeopt=menu,menuone,noselect

Explanation

Configure completeopt to control the completion popup: menu shows popup, menuone shows even for single match, noselect doesn't auto-select.

Next

How do I visually select a double-quoted string including the quotes themselves?