How can I hide the backup files that emacs creates?

前端 未结 4 1033
野趣味
野趣味 2021-02-05 13:20

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 back

4条回答
  •  日久生厌
    2021-02-05 13:44

    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 .emacs

    (setq make-backup-files nil)
    

提交回复
热议问题