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

How do you find where a key mapping was defined?

Answer

:verbose map <key>

Explanation

Use :verbose map <key> to see the mapping definition and the file/line where it was set. Helps debug conflicting mappings.

Next

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