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

How do you check the current value of a Vim option?

Answer

:set tabstop?

Explanation

Append ? to any option name to query its value. :set tabstop? shows the current tab width. :set all shows all options.

Next

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