I found out about Vim's substitute command...
:%s/replaceme/replacement/gi
And vimgrep...
:vimgrep /findme/gj project/**/*.rb
Is there a way to combine them in order to do a replacement across all the files under a dir?
|
I found out about Vim's substitute command...
And vimgrep...
Is there a way to combine them in order to do a replacement across all the files under a dir?
| |||
|
feedback
|
|
Even though I'm a Vim user, I generally use For example:
Piece by piece:
| |||||
feedback
|
|
One way would be to open all the files you want to run the substitution on (or any command), and run | |||
|
feedback
|
|
There's a plugin which endeavours to do just that: Vimgrep Replace. Oh, wait... there are others: Global Replace, EasyGrep. For a no plugin solution, perhaps The basic idea behind the first plugin (I'd guess the others too...) is to use (I suppose hgimenez might be on to a solution, but whether or not it's appropriate would probably depend on the number of files to be processed... The plugins should be ok regardless.) | |||||||||||
feedback
|
|
You could run vimgrep then record a macro that goes to each line in the vimgrep output and does the replace, something like this: (dont type in the # comments!)
I have not tested it, so it may need a little tweaking - test it on some files that you dont mind getting messed up first. The advantage of this over sed is that Vim regex are more powerful, and you can add the c option to :s to verify each replacement. Edit: I modified my original post since it was wrong. I was using :1vimgrep to find the first match in each file, but I misread the docs - it only finds one match across all files. | ||||
feedback
|