VIM: available shortcuts?

前端 未结 5 984
轻奢々
轻奢々 2021-01-30 17:31

I use many shortcuts for my work in vim. Other shortcuts are taken by plugins.

Sometimes I would like to add a shortcut for a new command but note afterwards that the sh

5条回答
  •  轮回少年
    2021-01-30 17:58

    :map //lists all the shortcuts that are assigned.
    

    map also takes a key combination as an argument that lists only the shortcuts assigned to this key combination.

    To list all the mappings assigned for Ctrl-V:

    :map 
    

提交回复
热议问题