Answers:
为什么不选择4列并点击c
?
<C-v>
2j
3l
cDone
<Esc>
另外,您可以使用:h normal
:
V
2j
:'<,'>norm 7lRDone
<Esc>
:norm
那是你的朋友
如果要在可视块内替换,可以使用vis.vim
plugin。
http://vim.wikia.com/wiki/Applying_substitutes_to_a_visual_block
安装:
从http://www.drchip.org/astronaut/vim/index.html#VIS下载vis.vba.gz
# Open vis.vba.gz in Vim 7.1 or later.
vim vis.vba.gz
# Source the open file.
:so %
# Quit Vim
:q
安装完成后:
ctrl-v to enter visual-block mode
Move to select the block you want
:B s/pattern/newtext/
更好的是,您可以在可视块上执行任何Ex命令,而不仅仅是替换。例如:B !sort
。
w
或e
快速选择几列,然后使用h
或进行调整l
。
Done
,但是如果我想写其他东西,我希望尽可能免除字符计数。