Skip to content

Commit

Permalink
Do not flash minibuffer when saving automatically.
Browse files Browse the repository at this point in the history
  • Loading branch information
manateelazycat committed Dec 11, 2018
1 parent a687a3f commit da13a68
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions site-lisp/extensions/lazycat/auto-save.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
;; Maintainer: Andy Stewart lazycat.manatee@gmail.com
;; Copyright (C) 2013 ~ 2014, Andy Stewart, all rights reserved.
;; Created: 2013-12-31 00:32:00
;; Version: 0.4
;; Last-Updated: 2018-10-05 08:00:39
;; Version: 0.5
;; Last-Updated: 2018-12-11 18:18:31
;; By: Andy Stewart
;; URL:
;; Keywords: autosave
Expand Down Expand Up @@ -61,6 +61,9 @@

;;; Change log:
;;
;; 2018/12/11
;; * Do not flash minibuffer when saving automatically.
;;
;; 2018/10/05
;; * Update font lock before save file.
;;
Expand Down Expand Up @@ -128,7 +131,8 @@ avoid delete current indent space when you programming."
(progn
(push (buffer-name) autosave-buffer-list)
(if auto-save-silent
(with-temp-message ""
(with-temp-message
(with-current-buffer " *Minibuf-0*" (buffer-string))
(basic-save-buffer))
(basic-save-buffer))
)))
Expand Down

0 comments on commit da13a68

Please sign in to comment.