Replace in Multiple Files - the Vim Way(vimninjas.com)5 points·by CeRRuTiTo·vor 14 Jahren·1 commentsvimninjas.comReplace in Multiple Files - the Vim Wayhttp://www.vimninjas.com/2012/09/19/replace-multiple/1 commentsPost comment[–]johncoltrane·vor 14 Jahrenreply> The limitation of argdo is that it won’t search the supplied directory recursively ** works more or less like * but for directories: :args **/*.rb :argdo %s/_params/params/gc will ask for confirmation before doing the substitution on every *.rb file contained in the current directory and its children.
works more or less like * but for directories:
will ask for confirmation before doing the substitution on every *.rb file contained in the current directory and its children.