Vim: How to determine where / when key mapping is given?

I found a mapping in the output :map

that I would like to remove, but I have no idea where the mapping is configured.

Is there a way to find out where / when the mapping is set so I can remove it?

+3


source to share


1 answer


Use this command:



:verbose map <key>

      

+8


source







All Articles