vim does not find and replace simple phrase that is clearly present
try using this:
:%s/numnodes/numnodes1/g
Try :%s/searchphrase/replacephase/g
Without the %
symbol Vim only matches and replaces on the current line.
try using this:
:%s/numnodes/numnodes1/g
Try :%s/searchphrase/replacephase/g
Without the %
symbol Vim only matches and replaces on the current line.