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

Is there a way to rename an open file in Emacs? While I'm viewing it? Something like save-as, but the original one should go away.

share|improve this question
28  
Question is incorrectly formulated. Any "can I xxx in Emacs?" should be written "how do I do xxx in Emacs?". Also, in 999 out of 1000 cases, someone else has already done it. In the remaining 1 case, you have to write the elisp code yourself. :-) – JesperE Dec 21 '08 at 18:09

5 Answers

up vote 26 down vote accepted

Try this function from Steve Yegge's .emacs:

;; source: http://steve.yegge.googlepages.com/my-dot-emacs-file
(defun rename-file-and-buffer (new-name)
  "Renames both current buffer and file it's visiting to NEW-NAME."
  (interactive "sNew name: ")
  (let ((name (buffer-name))
        (filename (buffer-file-name)))
    (if (not filename)
        (message "Buffer '%s' is not visiting a file!" name)
      (if (get-buffer new-name)
          (message "A buffer named '%s' already exists!" new-name)
        (progn
          (rename-file name new-name 1)
          (rename-buffer new-name)
          (set-visited-file-name new-name)
          (set-buffer-modified-p nil))))))

Take a look at that page, there's another really useful related function there, called "move-buffer-file".

share|improve this answer
Note: this method is not compatible with (setq uniquify-buffer-name-style 'forward) meaning if you have buffer named users\index.html (because you already have another buffer for posts\index.html) the renaming will fail – dolzenko Sep 27 '12 at 11:49

Yes, with dired mode, you can:

  • C-x C-j (dired-jump to current file)
  • R to rename the file (or dired-do-rename).
  • C-x k RET to go back to the (renamed) buffer

The rename is equivalent to a shell mv, but will also update any open buffers.

share|improve this answer
2  
That's not directly renaming the current file. – J. Pablo Fernández Dec 21 '08 at 17:21
1  
C-x b and you're back in the original buffer. You could write an Elisp function to do it, but I doubt you'll save many keystrokes with it. – Chris Conway Dec 22 '08 at 1:49
3  
Also, rather than C-x b, you can press C-x k to be back in the original buffer. – Yoo Oct 14 '10 at 12:55
1  
As to how to skip searching for the file from the dired buffer, see stackoverflow.com/questions/3933484/… – Yoo Oct 15 '10 at 16:03

Just for completeness, since some folks may visit this page thinking they will get an answer for the "save as" feature of Emacs, that's C-x C-w for an open file.

share|improve this answer
C-x C-w or use the menu File > Save as... – Yoo Oct 14 '10 at 13:21
4  
Why there is no feature to downvote comments!? :) – Daniel Dinnyes Feb 14 at 16:54

Here's a more robust version adapted from stevey.

;; Originally from stevey, adapted to support moving to a new directory.
(defun rename-file-and-buffer (new-name)
  "Renames both current buffer and file it's visiting to NEW-NAME."
  (interactive
   (progn
     (if (not (buffer-file-name))
         (error "Buffer '%s' is not visiting a file!" (buffer-name)))
     (list (read-file-name (format "Rename %s to: " (file-name-nondirectory
                                                     (buffer-file-name)))))))
  (if (equal new-name "")
      (error "Aborted rename"))
  (setq new-name (if (file-directory-p new-name)
                     (expand-file-name (file-name-nondirectory
                                        (buffer-file-name))
                                       new-name)
                   (expand-file-name new-name)))
  ;; If the file isn't saved yet, skip the file rename, but still update the
  ;; buffer name and visited file.
  (if (file-exists-p (buffer-file-name))
      (rename-file (buffer-file-name) new-name 1))
  (let ((was-modified (buffer-modified-p)))
    ;; This also renames the buffer, and works with uniquify
    (set-visited-file-name new-name)
    (if was-modified
        (save-buffer)
      ;; Clear buffer-modified flag caused by set-visited-file-name
      (set-buffer-modified-p nil))
  (message "Renamed to %s." new-name)))
share|improve this answer
Moving to new dir didn't work for me :) – dolzenko Sep 27 '12 at 11:53
Thank you very much. – lawlist May 6 at 19:30

David Lindquist has written a convenient Elisp function that renames the buffer whether it is associated with a file or not:

http://www.stringify.com/2006/apr/24/rename/

share|improve this answer
Solved the issue with uniquify-buffer-name-style (described in accepted answer) with this function, thanks! – dolzenko Sep 27 '12 at 11:50

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.