我倾向于使用 vim 很多。Vim 有很多命令,起初并不容易记住。:map
显示当前映射列表。我想为正常模式命令获得相同的东西(见下文示例)
:cheatsheet
会显示:
-------- vim-commands ----------------------------------------------------------
// BASIC CONTROL
hjkl - move
i - insert mode
R - replace mode
o - insert new line below
O - insert new line above
// BASIC MOTIONS
0 - start of line
^ - start of text on line
$ - end of line
// WORD MOTIONS
w - forwards a word
W - forwards MORE
...
a) vim 命令是否有类似的东西(例如: 2<< 向左缩进 2 行)?
b)如果是,如何定制这个输出(比如只显示他/她学过的命令)?