Created
December 16, 2012 07:24
-
-
Save cougarwww/4304006 to your computer and use it in GitHub Desktop.
vim: tip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d0 删至行首。 | |
d$ 删至行尾。 | |
dw 删除到某个单词的结尾位置 | |
D 删除到行尾 | |
x,y 删除与复制包含高亮区 | |
dL 删除直到屏幕上最后一行的内容 | |
dH 删除直到屏幕上第一行的内容 | |
dd 删除当前行 | |
ndd 删除当前行及其后 n-1 行。 | |
x 或 X 删除一个字符。 | |
u 回复操作 | |
^R 恢复u的操作 | |
v 选择行 | |
^v 选择列 | |
列选择^v;I; 两次ESC 多行插入 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment