Vim 不会找到并替换清晰存在的简单短语

我有一个简单的问题,谷歌没有设法帮助我。任何想法都是值得赞赏的。

我进行以下搜索并替换:

:s/numnodes/numnodes1/g

在一个包含以下文本的文件中:

numprocs=0
numnodes=0

我明白

E486: Pattern not found

绿色正方形的位置显示了我要开始打字的位置,这个位置显然在图案的上方。我尝试搜索其他不涉及正则表达式的短语,它们也出现了,但也失败了。一个简单的/numnode 高亮显示匹配。有人知道 Vim 怎么了吗?

45849 次浏览

try using this:

:%s/numnodes/numnodes1/g

Try :%s/searchphrase/replacephase/g

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