How can I find out the default value of a variable if it is not set? For example, the default timeout for the leader key is controlled by the timeoutlen variable, but if I do:
:echo timeoutlen
I get an "undefined variable" error. Is there any command to find out default values for variables like this?
timeoutlenis an option, not a variable. Read the help on options. Try:set timeoutlen?– D. Ben Knoble Aug 12 '17 at 18:44