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.
:set tabstop?
Append ? to any option name to query its value. :set tabstop? shows the current tab width. :set all shows all options.