vim does not find and replace simple phrase that is clearly present

后端 未结 2 1159
一整个雨季
一整个雨季 2021-01-31 13:34

I have a simple vim problem that Google hasn\'t managed to help me with. Any thoughts are appreciated.

I do the following search and replace:

:s/numnode         


        
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-31 13:49

    Try :%s/searchphrase/replacephase/g

    Without the % symbol Vim only matches and replaces on the current line.

提交回复
热议问题