vote up 1 vote down star
3

How do I prevent Emacs from creating backup copies of buffers I don't wish to save when I kill buffers that have not been saved?

flag

3 Answers

vote up 7 vote down check

See Here

Short version: put

(setq make-backup-files nil)

in you .emacs file, or toggle this feature at any time with M-x auto-save-mode.

Here is the Emacs Manual Node.

link|flag
1  
Links are OK, but it is better to copy the actual soution into StackOverflow then to count on it remaining indefinitly somewhere out on the web... – dmckee Jul 29 at 13:26
Thank you for editing. I have to admit I rushed it. If you look in the revision, I did post an example but was not in the situation to test it. So I removed it. – kjfletch Jul 29 at 13:42
vote up 4 vote down

If you don't want emacs to litter your drive with backup files try adding the following to your .emacs file:

(setq backup-directory-alist '(("." . "~/emacs-backups")))

This will store every backup in a single location.

link|flag
I'm not sure tat this really answers the question, but I like it. – dmckee Jul 29 at 13:19
You're right, I just assumed the reason that skurpur wanted to disable backups was because of all those messy droppings that Emacs leaves behind. Setting the backup-directory-alist variable is just a simple way of house training it. – indy Jul 29 at 13:27
vote up 0 vote down

I would advice you to use something like:

(defvar backup-dir "~/.emacs.d/backups/")
(setq backup-directory-alist (list (cons "." backup-dir)))

This way you can have all backup files in one directory.

link|flag

Your Answer

Get an OpenID
or

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