首页 > 代码库 > VIM学习

VIM学习

使用脚本VIM编写 site:www.ibm.com 百度搜索

VIM寄存器的使用

 

http://www.ibm.com/developerworks/cn/linux/l-tip-vim1/

 

VIM替换功能

这是行模式,   如果执行这个,  则显示:E486: 找不到模式:b

:s/aaa/bbb/g

如果要在整篇文档中替换, 要写成如下:

:%s/aaa/bbb/g

 

把Vim的命令输出重定向

一,转自

http://vim.wikia.com/wiki/Capture_ex_command_output

:redir @a:set all:redir END
 
Now, register ‘a‘ will have the output of the "set all" ex command. You can paste this into a Vim buffer, using "ap.
 
function! TabMessage(cmd)  redir => message  silent execute a:cmd  redir END  tabnew  silent put=message  set nomodifiedendfunctioncommand! -nargs=+ -complete=command TabMessage call TabMessage(<q-args>)
 
:TabMessage highlight

VIM学习