我们在写代码时要经常用到搜索与替换
那么在vim编辑器中该如何操作
搜索 `/searchword`
替换所有:`1,$s/replaceword/newword/gc`
从当前行开始替换: `,$s/replaceword/newword/gc`
其中
`g`全部替换
`c`确认
我们在写代码时要经常用到搜索与替换
那么在vim编辑器中该如何操作
搜索 `/searchword`
替换所有:`1,$s/replaceword/newword/gc`
从当前行开始替换: `,$s/replaceword/newword/gc`
其中
`g`全部替换
`c`确认