I just started using emacs after having used vi for a long time. :) One thing which is annoying me is that whenever I modify a file, save it and exit emacs, I see a buffer file created in the same directory named filename~ (if the file I edited was "filename"). Is there any way I can get rid of this? Or hide these files? It is very annoying to see tons of buffer files when I do ls of the directory.
|
|
You can either move them to their own folder with the following code:
Or you can remove them completely, like so:
Personally I would be weary of removing them as they can come in useful. Further discussion is here: I would recommend checking out the emacs-starter-kit it sorts out a load of issues that people have when coming to emacs, and is pretty heavily used. http://github.com/technomancy/emacs-starter-kit/blob/master/starter-kit-misc.el Update: There seems to be much confusion over how to use the functions. I'm going to have a little play around later but here is some more information. Note that
so it's not just as simple as adding in a folder name. That said it seems from a quick google search the following might just do what you all want:
http://www.google.com/codesearch?hl=en&lr=&q=auto-save-file-name-transforms&sbtn=Search |
|||||||||||||
|
|
The following lines in
|
|||
|
|
|
In your .emacs:
Edit:
If you're unfamiliar with the .emacs file, it's a file named |
|||||
|
|
Here is a link to the same question answered on SuperUser and my response. And a StackOverflow question entitled Emacs: Don’t create #these# files when not saving modified buffer And for completeness, as stated by others; to stop the backup files being created put this in your
|
|||
|
|
|
||||
|