Interactive search/replace regex in Vim?

前端 未结 7 2029
夕颜
夕颜 2020-12-12 10:05

I know the regex for doing a global replace,

     %s/old/new/g

How do you go about doing an interactive search-replace in Vim?

7条回答
  •  离开以前
    2020-12-12 10:19

    I think you're looking for c, eg s/abc/123/gc, this will cause VIM to confirm the replacements. See :help :substitute for more information.

提交回复
热议问题