How to Use Vim to Replace Text in Multiple Files
Problem
You're refactoring a codebase and you need to make the same change across all files:
function greeter() {
return 'Hello World!';
}
In the example above, we want to rename greeter to greet. Because we're changing the name of the function wh...
blog.thesshguy.com4 min read