Emacs: Don't create #these# files when not saving modified buffer

前端 未结 3 1205
迷失自我
迷失自我 2021-02-08 23:04

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?

3条回答
  •  孤城傲影
    2021-02-08 23:37

    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.

提交回复
热议问题