When I edit files with emacs, emacs creates a file with the same name, but with a tilde on the end:

notes.txt~

When I save my changes and exit emacs, it doesn't remove the temp file. Is there a setting I can make in the .emacs that forces it to delete temp files so that it stops cluttering my directories?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Emacs calls these backup files (as opposed to temporary files starting with #). To not create these, add

(setq make-backup-files nil)

to your .emacs

link|improve this answer
feedback

What KeithB said, or put your files into version control.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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