Make auto-revert prompt the user
This commit is contained in:
@@ -2767,8 +2767,8 @@ The minimal-emacs.d base provides a sensible foundation for your personal config
|
|||||||
|
|
||||||
* **Repository Prioritization:** Configures archives and sets explicit priorities for GNU ELPA, NonGNU ELPA, and MELPA.
|
* **Repository Prioritization:** Configures archives and sets explicit priorities for GNU ELPA, NonGNU ELPA, and MELPA.
|
||||||
* **Centralized Artifacts:** Routes auto-save and backup files to dedicated subdirectories within the Emacs configuration folder. Enables versioned backups.
|
* **Centralized Artifacts:** Routes auto-save and backup files to dedicated subdirectories within the Emacs configuration folder. Enables versioned backups.
|
||||||
* **Auto-Revert:** Automatically refreshes buffers when the underlying file changes on disk. (Disabled by default)
|
* **Auto-Revert:** Refreshes buffers when the underlying file changes on disk. (Disabled by default.)
|
||||||
* **Session Memory:** Saves cursor positions across sessions, maintains recent file history, and persists the minibuffer history. (Disabled by default)
|
* **Session Memory:** Saves cursor positions across sessions, maintains recent file history, and persists the minibuffer history. (Disabled by default.)
|
||||||
|
|
||||||
### Precision Editing and UX Enhancements
|
### Precision Editing and UX Enhancements
|
||||||
|
|
||||||
|
|||||||
3
init.el
3
init.el
@@ -270,9 +270,6 @@
|
|||||||
;;; Auto revert
|
;;; Auto revert
|
||||||
;; Auto-revert in Emacs is a feature that automatically updates the contents of
|
;; Auto-revert in Emacs is a feature that automatically updates the contents of
|
||||||
;; a buffer to reflect changes made to the underlying file.
|
;; a buffer to reflect changes made to the underlying file.
|
||||||
(setq revert-without-query (list ".") ; Do not prompt
|
|
||||||
auto-revert-stop-on-user-input nil
|
|
||||||
auto-revert-verbose t)
|
|
||||||
|
|
||||||
;; Revert other buffers (e.g, Dired)
|
;; Revert other buffers (e.g, Dired)
|
||||||
(setq global-auto-revert-non-file-buffers t)
|
(setq global-auto-revert-non-file-buffers t)
|
||||||
|
|||||||
Reference in New Issue
Block a user