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?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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.
回答2:
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.
回答3:
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.