在vi中,我通常会做一个"确认"只需使用以下命令查找和替换::%s/find/replace/c
。
嗯,问题就在于我有这样的代码:
#this will find this and won't find the next one.
然后它要求我确认是否要替换find
的第一个实例,但由于某种原因它会跳过第二个实例。
如何在每次出现单词find
时提示我而不是每行出现第一个单词?
答案 0 :(得分:2)
使用全局参数g
:%s/find/replace/gc