vi 中常用命令技巧

简介:
vi中的命令技巧
file copy in the diffrent file:
"a9yy      @don't forget the ",a is variable name,9 is copy lines ,yy is copy   
"ap        @don't forget the ",a is variable name,p is paste  
yy         @copy the current line 
p          @paste
dd         @delete the current line
nyy        @copy n lines 
ndd        @delete n lines
d)         @Delete the beginning of the next sentence
d}         @Delete the beginning of the next paragraph
"
:set nu        @don't forget the :,display line numbers 
:set nonu        @don't forget the :,undisplay line numbers 


shift + g     @jump to the last line 
shift + u     @return last state
“^”跳转:将光标快速跳转到本行的行首字符;

“$”跳转:将光标快速跳转到本行的行尾字符;


vi 有一条命令我在这里补充下:我也是一个偶然机会才发现,确实很好用。当我们使用yy命令在在这一个文件中复制,你不能复制到其他文件中,在这里用这个技巧比用剪切板那条命令还方便。

在hello1.c中按下nyy复制你想复制的文本,然后输入命令 :e  ./hello2.c     这是就跳转到了hello2.c这个文件去了,然后按下p就可以粘贴到你想粘贴的地方了。(对文本操作必须文本是才保存状态下,e 后面可以根文件的目录)


目录
相关文章
|
9月前
|
开发工具
VIM一些常用命令(一)
VIM一些常用命令(一)
|
11月前
|
开发工具 Windows
vim常用命令总结
vim常用命令总结
|
开发工具
Vim常用的操作命令(1)
Vim常用的操作命令
|
开发工具
Vim常用的操作命令(2)
Vim常用的操作命令
|
开发工具
vim基本命令
vim基本命令
|
开发工具
Vim常用的操作命令
Vim常用的操作命令
126 0
|
Web App开发 网络协议 开发工具