Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As a follow-up to my question at http://stackoverflow.com/questions/269812/how-to-quickly-get-started-at-using-and-learning-emacs It's trying to find out how to do something like this which should be easy, that especially stops me from getting more used to using Emacs and instead starting up the editor I'm already familiar with. I use the example here fairly often in editing multiple files.

In Ultraedit I'd do Alt+s then p to display a dialog box with the options: Find (includes using regular expressions across multiple lines), Replace with, In Files/Types, Directory, Match Case, Match Whole Word Only, List Changed Files and Search Sub Directories. Usually I'll first use the mouse to click-drag select the text that I want to replace.

Using only Emacs itself (on Windows XP), without calling any external utility, how to replace all foo\nbar with bar\nbaz in *.c and *.h files in some folder and all folders beneath it. Maybe Emacs is not the best tool to do this with, but how can it be done easily with a minimal command?

share|improve this question

6 Answers

up vote 127 down vote accepted
  1. M-x find-name-dired: you will be prompted for a root directory and a filename pattern.
  2. Press t to "toggle mark" for all files found.
  3. Press Q for "Query-Replace in Files...": you will be prompted for query/substitution regexps.
  4. Proceed as with query-replace-regexp: SPACE to replace and move to next match, n to skip a match, etc.
share|improve this answer
8  
No, it's recursive. The non-recursive version would be %m in dired-mode. – Chris Conway Nov 7 '08 at 13:26
1  
This is probably a problem with the emacs/find configuration, possibly related to archivum.info/bug-gnu-emacs@gnu.org/2005-10/msg00120.html What's the text of the error? – Chris Conway Nov 8 '08 at 19:49
1  
find . "(" -iname "test.c" ")" -exec ls -ld "{}" ";" Access denied - . File not found - -INAME File not found - TEST.C File not found - ) File not found - -EXEC File not found - LS File not found - -LD File not found - {} File not found - ; – Rob Kam Nov 8 '08 at 23:14
3  
Steen, Chris: Probably not exactly what you want but you can use 'C-x s' (save-some-buffers), it will prompt you for each modified file, so you only have to hit 'y' multiple times. – danielpoe Jun 3 '09 at 13:17
5  
C-x s ! to save all the files at once. – cYrus Jul 27 '12 at 0:05
show 11 more comments

I generally use other tools to perform this task, and it seems like many of the approaches mentioned at EmacsWiki's Find and Replace Across Files entry shell out, but the Findr Package looks very promising.

Stealing part of the source file:

(defun findr-query-replace (from to name dir)
  "Do `query-replace-regexp' of FROM with TO, on each file found by findr.
share|improve this answer
how do I try to found string "Collectible" in all file with extension java and hxx using findr.el? – swdev Jan 25 '11 at 4:57
  • M-x find-name-dired RET
    • it may take some time for all the files to appear in the list, scroll to bottom (M->) until "find finished" appears to make sure they all have loaded
  • Press t to "toggle mark" for all files found
  • Press Q for "Query-Replace in Files...": you will be prompted for query/substitution regexps.
  • Proceed as with query-replace-regexp: SPACE or y to replace and move to next match, n to skip a match, etc.
    • Type ! to replace all occurrences in current file without asking, N to skip all possible replacement for rest of the current file. (N is emacs 23 only)
    • To do the replacement on all files without further asking, type Y.
  • Call “ibuffer” (C-x C-b if bound to ibuffer, or M-x ibuffer RET) to list all opened files.
  • Type * u to mark all unsaved files, type S to save all marked files
  • * * RET to unmark all marks, or type D to close all marked files

This answer is combined from this answer, from this site, and from my own notes. Using Emacs 23.

share|improve this answer
1  
ibuffer is not bound to C-x C-b by default. – phils Nov 5 '11 at 3:20
@phils - Any suggestions? – Ballpark Nov 15 '11 at 22:19
Well personally I recommend that people do bind C-x C-b to ibuffer, because it's so much better than the default binding. Just add (global-set-key (kbd "C-x C-b") 'ibuffer) to your .emacs file. Failing that, use M-x ibuffer RET in the above instructions. – phils Nov 15 '11 at 22:47
ok. I think I have the emacs startup kit, which is why mine is bound – Ballpark Nov 15 '11 at 23:07

Using dired to recurse down a deep directory tree is going to be a bit slow for this task. You might consider using tags-query-replace. This does mean shelling out to create a tags table, but that is often useful anyway, and it's quick.

share|improve this answer

For open buffers, this is what I do :

(defun px-query-replace-in-open-buffers (arg1 arg2)
  "query-replace in all open files"
  (interactive "sRegexp:\nsReplace with:")
  (mapcar
   (lambda (x)
     (find-file x)
     (save-excursion
       (goto-char (point-min))
       (query-replace-regexp arg1 arg2)))
   (delq
    nil
    (mapcar
     (lambda (x)
       (buffer-file-name x))
     (buffer-list)))))
share|improve this answer

It's not Emacs, but xxdiff comes with a tool called xx-rename which will do that for multiple strings at a time (e.g. From To from to FROM TO), with interactive prompting, save backups of all the modified files, and produce a short log of changes made with context. That's what I tend to use when I do large/global renamings.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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