Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我搜索一个词时,可能会有很多匹配项,但我只想替换其中一些,所以使用
/keyword
和
n
我可以访问每个匹配
有什么方法可以访问每个匹配然后决定是否替换它?
这:
:%s/keyword/replacement/gc
一直按n,直到找到要更改的第一个单词。
然后键入cw替换Esc。
从那时起,您可以键入n以跳到下一场比赛以及.是否要更改它(否则只需n再次跳到下一场比赛)。