Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to see all VIM keybindings? [duplicate]

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.

like image 587
chuugar Avatar asked Sep 16 '25 11:09

chuugar


1 Answers

: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.

like image 156
romainl Avatar answered Sep 19 '25 07:09

romainl