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

How do you enable enhanced command-line completion?

Answer

set wildmenu wildmode=longest:full,full

Explanation

Enable wildmenu for a visual menu above the command line. wildmode controls completion behavior; longest:full,full first completes to longest match, then cycles.

Next

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