首页 > 系统服务 > 详细

[Practical.Vim(2012.9)].Drew.Neil.Tip49 学习摘要

时间:2015-04-23 00:01:49      阅读:257      评论:0      收藏:0      [点我收藏+]

Find by Character

在Vim中快速定位到某个字符的命令为f
技术分享

In this case, the fx command does nothing. Vim searches forward for an occurrence of the “x” character, but no matches are found, so the cursor doesn ’t move. The fo command finds an occurrence of the “o ” character, so the cursor is positioned on top of the first match.
fx命令没有移动光标是因为段落中没有x这个字符,所以光标就不移动。fo命令找到了字符o,所以光标就移动到第一个字符o上。

使用f命令后,使用;可以移动光标到下一个匹配的字符上,如下
技术分享

除此之外,我们还可以使用F t t T ,命令移动光标到特定字符如下:
技术分享
Ff查询方向相反,移动方向相反,t移动到下一个匹配字符的前面,T移动到上一个匹配字符的后面。

这些移动命令可以和删除命令d结合使用,快速删除特定范围的字符,如下:
技术分享
首先命令f,定位到,处,然后要删除从,到结尾除了句号外的所有字符,所以就用命令t.定位到字符.之前。d表示删除。

In general, I tend to use f{char} and F{char} in Normal mode when I want to move the cursor quickly within the current line, whereas I tend to use the t{char} and T{char} character search commands in combination with d{motion} or c{motion} .
快速移动时一般用f{char} 命令或 F{char}命令,更改文本内容时用t{char}T{char}

[Practical.Vim(2012.9)].Drew.Neil.Tip49 学习摘要

原文:http://blog.csdn.net/wdy_yx/article/details/45204413

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!