Clean up "lst:desktop-setup" and improve its comments

This commit is contained in:
Gerard Vermeulen 2024-06-16 10:30:38 +02:00
parent 30876f44ad
commit a1fd2d24a2

View File

@ -3866,22 +3866,24 @@ Return \"Front Matter\" when current page is above the first headline."
Listing [[lst:desktop-setup][setup desktop]] makes Emacs save its state between closing its session to
opening the next session.
#+caption[Setup ~desktop~ to save Emacs sessions]:
#+caption: Setup ~desktop~ to save Emacs sessions.
#+caption[Setup =desktop= to save Emacs sessions]:
#+caption: Setup =desktop= to save Emacs sessions.
#+name: lst:desktop-setup
#+begin_src emacs-lisp -n :results silent
(with-eval-after-load 'emacs
;; Load and configure `Org' before enabling `desktop-save-mode'.
(desktop-save-mode t)
;; GAV: I fail to implement the idea of ChatGPT on how to reload
;; `eww' pages automatically while restoring the desktop (idea is to
;; add save and restore handlers to `desktop-buffer-mode-handlers').
;; GAV: (setopt eww-restore-desktop t) fails and starts hesitantly.
;; GAV: I fail to code a function for setting the
;; `desktop-buffers-not-to-save-function' option.
(setopt desktop-buffers-not-to-save
(rx bos (or "*Apropos" "compilation*"))
desktop-modes-not-to-save
'(emacs-lisp-mode image-mode tags-table-mode)))
#+end_src
'(emacs-lisp-mode image-mode tags-table-mode))
BUG: I fail to code a function to set the ~desktop-buffers-not-to-save-function~
option.
(desktop-save-mode t))
#+end_src
* Programming Tools
:PROPERTIES: