当前位置 : 主页 > 手机开发 > 无线 >

用t和f移动光标,使用word作为参数,vim

来源:互联网 收集:自由互联 发布时间:2021-06-10
是否有可能在 vim中使用t和f向前移动(或以T和F的方式向前移动),但是使用单词作为参数? / word怎么样? 它可以像其他任何东西一样与运算符组合: the lazy cow jumped over the high moon 光标在
是否有可能在 vim中使用t和f向前移动(或以T和F的方式向前移动),但是使用单词作为参数? / word怎么样?

它可以像其他任何东西一样与运算符组合:

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
网友评论