4

I wish to personalize a bit my vimrc with my own keybindings without accidentally overwriting originals ones.

So I wish to see all keybindings, and not only the ones I mapped with :map .

Is there a way to do this? Thanks.

octosquidopus
  • 3,517
  • 8
  • 35
  • 53
chuugar
  • 73
  • 5

1 Answers1

11
:help index

will show you every default key-bindings.

:map

will show you every custom mapping.

:map <leader>

will show you every custom <leader> mapping.

:verbose nmap 

will show you every custom normal mode mapping and where they are defined.

romainl
  • 186,200
  • 21
  • 280
  • 313