vim常用操作

Jump to a line 跳转至指定行

123G
:123
123gg

Find all empty lines and delete 找到所有空行,并删除

:g/^s*$/d

g :global
^s : Head of a line
* : wildcard character
$ : End of a line
/ : separater
d : delete

change the window size 调整窗口大小

:res10 水平分割调整到10
:res +10 水平分割增加10
:vertical res10 垂直分割到10
:vertical res +10 垂直分割增加10

替换当前单词

ciw

将文件中的分号;替换为换行

:s/;/\r/g

删除所有回车

:%s/\n//g

你可能感兴趣的:(vim常用操作)