是否有可能在 vim中使用t和f向前移动(或以T和F的方式向前移动),但是使用单词作为参数? / word怎么样? 它可以像其他任何东西一样与运算符组合: the lazy cow jumped over the high moon 光标在
它可以像其他任何东西一样与运算符组合:
the lazy cow jumped over the high moon
光标在开始时,d / highEnter:
high moon
奖金
此外,您可能有兴趣学习一些ex模式命令:
the lazy cow jumped over the high moon the hazy cow jumped over the high moon the noble cow jumped over the high moon the crazy cow jumped over the high moon
现在进入
:g/azy/ norm! /jumped<CR>d/high/e<CR>
(注意:< CR>表示输入键的C-vC-m(^ M))
结果:
the lazy cow moon the hazy cow moon the noble cow jumped over the high moon the crazy cow moon
/ e标志实现包含f的包容性行为;为了得到’直到行为:
:g/azy/ norm! /jumped<CR>d/high/<CR>
结果:
the lazy cow high moon the hazy cow high moon the noble cow jumped over the high moon the crazy cow high moon