# HG changeset patch # User Oleksandr Gavenko # Date 1609677370 -7200 # Node ID b6c42e0c1cb959c9cf0c0262bedbcd02e18b0c01 # Parent d627cd09b5e3594a5a9cf6ceba5744d04c6bd634 Disable auto saving, files "#name#" might trigger false rebuild if there is some file watcher. Also those files looks like garbage in other tools/IDE. diff -r d627cd09b5e3 -r b6c42e0c1cb9 .emacs-my --- a/.emacs-my Sun Jan 03 14:31:09 2021 +0200 +++ b/.emacs-my Sun Jan 03 14:36:10 2021 +0200 @@ -120,8 +120,10 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (message "auto save") -(setq auto-save-default t) -;; If nil autosave to different than original to buffer file. +;; Disable auto saving, files "#name#" might trigger false rebuild if there is +;; some file watcher. Also those files looks like garbage in other tools/IDE. +(setq auto-save-default nil) +;; If nil autosave to a different file than the original. (setq auto-save-visited-file-name nil) (setq auto-save-interval 300) ;; Note: if you kill unsaved file auto save file not deleted.