[Fix #604] Save only the current buffer on focus lost
This commit is contained in:
parent
978808b745
commit
fa40fc8a7e
1 changed files with 1 additions and 6 deletions
|
@ -173,13 +173,8 @@ The body of the advice is in BODY."
|
||||||
|
|
||||||
(add-hook 'mouse-leave-buffer-hook 'prelude-auto-save-command)
|
(add-hook 'mouse-leave-buffer-hook 'prelude-auto-save-command)
|
||||||
|
|
||||||
;; Autosave buffers when focus is lost
|
|
||||||
(defun prelude-save-all-buffers ()
|
|
||||||
"Save all modified buffers, without prompts."
|
|
||||||
(save-some-buffers 'dont-ask))
|
|
||||||
|
|
||||||
(when (version<= "24.4" emacs-version)
|
(when (version<= "24.4" emacs-version)
|
||||||
(add-hook 'focus-out-hook 'prelude-save-all-buffers))
|
(add-hook 'focus-out-hook 'prelude-auto-save-command))
|
||||||
|
|
||||||
;; highlight the current line
|
;; highlight the current line
|
||||||
(global-hl-line-mode +1)
|
(global-hl-line-mode +1)
|
||||||
|
|
Loading…
Reference in a new issue