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

How do you show matching brackets in Vim?

Answer

set showmatch

Explanation

Enable showmatch to briefly highlight the matching bracket when you type a closing bracket. Set matchtime to control the display duration.

Next

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