up vote 4 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

Even though I'm a Vim user, I generally use find and sed for this sort of thing. The regex syntax for sed is similar to Vim's (they're both descendants of ed), though not identical. With GNU sed you can also use -i for in-place edits (normally sed emits the modified version to stdout).

For example:

sed -i -e 's/replaceme/replacement/g' $(find project -name '*.rb')

Piece by piece:

  • run sed
  • with in-place edits
  • execute command...
  • ...substitute (alsmost the same as vim, but note lack of % -- it's the default in sed)
  • rest of args from find command:
    • find
    • in project tree
    • files whose names match...
    • ...'*.rb'
link|improve this answer
2  
Make sure and test your find before giving it to sed - this can be really bad if it's overly inclusive. It's also a good idea to give sed the -c (--copy) option, which will keep it from messing with read-only files. – Jefromi Jan 21 '10 at 23:06
feedback

One way would be to open all the files you want to run the substitution on (or any command), and run :bufdo <cmd>, which will run <cmd> on all open buffers.

link|improve this answer
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 argdo would help if you could get vimgrep's output onto the argument list (which can be set with args), but I can't seem to figure out the details. I'd be happy if somebody took the idea and improved upon it... so here it is.

The basic idea behind the first plugin (I'd guess the others too...) is to use vimgrep first, then cycle through the matches with :cnext and apply the substitution command on each line. A function to accomplish this could be small enough to put it in .vimrc. (Maybe you can lift one from the plugins' sources?)

(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.)

link|improve this answer
Thanks, but arrrrgh! Is there a way to do it without installing another #!*&% plugin? – Ethan Jan 21 '10 at 21:48
@Ethan: I feel for you. :-) I think there must be a way involving :args, :argdo, :copen or whatever... I just don't use vimgrep enough to have thought much about it before and can't seem to be able to put together the perfect fix for you just yet. But I'm still trying, so perhaps I'll come up with something and edit. – Michał Marczyk Jan 21 '10 at 21:52
Oh well... I really can't seem to find a clean & simple no-plugin solution or conclusively assure myself that there isn't any. My Vim-fu is failing me! :-( The plugins do seem nice, though, perhaps they'd be worth a try... – Michał Marczyk Jan 21 '10 at 22:32
If you really want to do it inside vim, just launch it with all the files you want on the command line, then use bufdo or windo as appropriate. – Jefromi Jan 21 '10 at 23:04
@Michal: Thanks, I guess it isn't really essential to do the operation within Vim. – Ethan Jan 22 '10 at 6:30
show 2 more comments
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!)

:set autowrite                  #automatically save the file when we change buffers
:vimgrep /pattern/ ./**/files  
qa                              #start recording macro in register a
:s/pattern/replace/g            #replace on the current line
:cnext                          #go to next matching line
q                               #stop recording
10000@a                          #repeat the macro 10000 times, or until stopped by 
                                #an "error" such as reaching the end of the list
:set noautowrite

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.

link|improve this answer
Cool! In searching for a single expression solution I never stopped to consider a macro... Makes me feel kind of silly now. +1. :-) – Michał Marczyk Jan 23 '10 at 14:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.