Return to Snippet

Revision: 10298
at December 16, 2008 23:38 by sanjivarunsahayamhotmailcom


Updated Code
:%s/searchterm/replaceterm/g

eg.

Search for the word "today" within the whole file and replace all occurrences of it with "tomorrow".

:%s/today/tomorrow/g

Revision: 10297
at December 16, 2008 20:10 by sanjivarunsahayamhotmailcom


Initial Code
:%s/searchterm/ replaceterm/g

eg.

Search for the word "today" within the whole file and replace all occurrences of it with "tomorrow".

:%s/today/ tomorrow/g

Initial URL


Initial Description
Search and replacing all instances of some text within Vim

Initial Title
Search and replace in Vim

Initial Tags
search, replace

Initial Language
Other