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?
相关问题
- Symbol's function definition is void: declare-
- How can I set the SVN password with Emacs 23.1 bui
- Emacs shell: save commit message
- emacs bind key to the insertion of another
- Emacs - set mark on edit location
相关文章
- ess-rdired: I get this error “no ESS process is as
- Emacs/xterm color annoyance on Linux
- Pipe less to Emacs
- Capturing the output of “diff” with org-babel
- emacs terminal mode: how to copy and paste efficie
- How to permanently enable the hs-minor-mode in ema
- Pipe emacs shell output to a new buffer
- Following a link into a git-repo without lengthy d
If you don't want emacs to litter your drive with backup files try adding the following to your .emacs file:
This will store every backup in a single location.
I would advice you to use something like:
This way you can have all backup files in one directory.
See Here
Short version: put
in you .emacs file, or toggle this feature at any time with
M-x auto-save-mode
.Here is the Emacs Manual Node.