当前位置: 技术问答>linux和unix
希望获得vim命令的英文全称
来源: 互联网 发布时间:2016-04-16
本文导语: 本人刚开始学vim,觉得他的命令多而且不知其全称,背过后就忘光了。希望高手们给我各命令的英文全称,当然希望越多越好。 例如:p paste u undo 其他的一大堆命令不知它的英文是什么意思(gg(行首)、x(删除一...
本人刚开始学vim,觉得他的命令多而且不知其全称,背过后就忘光了。希望高手们给我各命令的英文全称,当然希望越多越好。
例如:p paste
u undo
其他的一大堆命令不知它的英文是什么意思(gg(行首)、x(删除一个字符)、$(行末尾)……)
在此不胜感激!
例如:p paste
u undo
其他的一大堆命令不知它的英文是什么意思(gg(行首)、x(删除一个字符)、$(行末尾)……)
在此不胜感激!
|
这个? 摘自http://www.linuxhelp.net/guides/vim/
VIM Commands
Key: Action:
Enter command mode
i Enter insert mode
R Enter overwrite mode
a Enter append mode
:w Save File
:q Exit vim without saving
x Delete the character under the cursor
dw Delete the current word
dd Delete the current line
d$ Delete everything Right of the cursor
yy Yank the current line onto the clipboard
yw Yank the current word onto the clipboard
p Paste the clipboard
u Undo
^r Redo
G Jump to bottom of file
/text Search for the textfrom the cursor
VIM Commands
Key: Action:
Enter command mode
i Enter insert mode
R Enter overwrite mode
a Enter append mode
:w Save File
:q Exit vim without saving
x Delete the character under the cursor
dw Delete the current word
dd Delete the current line
d$ Delete everything Right of the cursor
yy Yank the current line onto the clipboard
yw Yank the current word onto the clipboard
p Paste the clipboard
u Undo
^r Redo
G Jump to bottom of file
/text Search for the textfrom the cursor
|
.
|
楼上比较全