vote up 4 vote down star

More than once I've lost work by accidentally killing a temporary buffer in Emacs. Can I set up Emacs to give me a warning when I kill a buffer not associated with a file?

flag

2 Answers

vote up 7 vote down check

Make a function that will ask you whether you're sure when the buffer has been edited and is not associated with a file. Then add that function to the list `kill-buffer-query-functions'.

  • a buffer is not visiting a file if and only if the variable `buffer-file-name' is nil

EDIT: the following should work if you put it in `kill-buffer-query-functions':

(defun maybe-kill-buffer ()
  (if (and (not buffer-file-name)
           (buffer-modified-p))
      ;; buffer is not visiting a file
      (y-or-n-p "This buffer is not visiting a file but has been edited.  Kill it anyway? ")
    t))

EDIT: To add it to the list, do:

(add-to-list 'kill-buffer-query-functions 'maybe-kill-buffer)
link|flag
This works, except I have to remove the "buffer" argument. – James Sulak Sep 17 '08 at 20:36
Also, is there any way to make it exclude other buffers, such as Open Recent? – James Sulak Sep 17 '08 at 20:38
You could put the following inside the `and' after `buffer-modified-p': (not (equal (buffer-name) "*Open Recent*")) – Denis Bueno Sep 17 '08 at 20:40
vote up 1 vote down
(defun maybe-kill-buffer ()
  (if (and (not buffer-file-name)
           (buffer-modified-p))
      ;; buffer is not visiting a file
      (y-or-n-p (format "Buffer %s has been edited.  Kill it anyway? "
                        (buffer-name)))
    t))

(add-to-list 'kill-buffer-query-functions 'maybe-kill-buffer)
link|flag

Your Answer

Get an OpenID
or

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