标签:blog http io ar 使用 sp on art log
使用脚本VIM编写 site:www.ibm.com 百度搜索
VIM寄存器的使用
http://www.ibm.com/developerworks/cn/linux/l-tip-vim1/
这是行模式, 如果执行这个, 则显示:E486: 找不到模式:b
:s/aaa/bbb/g
如果要在整篇文档中替换, 要写成如下:
:%s/aaa/bbb/g
一,转自
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 nomodified endfunction command! -nargs=+ -complete=command TabMessage call TabMessage(<q-args>)
:TabMessage highlight
标签:blog http io ar 使用 sp on art log
原文地址:http://www.cnblogs.com/zhang-pengcheng/p/4093361.html