Compare commits
2 Commits
c2f94856fe
...
a1fd2d24a2
Author | SHA1 | Date | |
---|---|---|---|
a1fd2d24a2 | |||
30876f44ad |
24
README.org
24
README.org
@ -209,7 +209,6 @@ of [[info:emacs#Saving Customizations][saving customizations (info)]].
|
|||||||
;; Known problem: EasyPG fails to save files encrypted with GnuPG v2.4.1.
|
;; Known problem: EasyPG fails to save files encrypted with GnuPG v2.4.1.
|
||||||
;; Darwin: brew install gnupg@2.2
|
;; Darwin: brew install gnupg@2.2
|
||||||
epg-pinentry-mode 'loopback
|
epg-pinentry-mode 'loopback
|
||||||
fido-mode t
|
|
||||||
global-hl-line-mode t
|
global-hl-line-mode t
|
||||||
global-hl-line-sticky-flag t
|
global-hl-line-sticky-flag t
|
||||||
history-delete-duplicates t
|
history-delete-duplicates t
|
||||||
@ -1292,8 +1291,7 @@ documentation.
|
|||||||
(when (ensure-package-installation 'vertico)
|
(when (ensure-package-installation 'vertico)
|
||||||
;; GAV: Builtin `fido-mode' may fix `find-file' completion when
|
;; GAV: Builtin `fido-mode' may fix `find-file' completion when
|
||||||
;; using `vertico-directory' functions which confuse `find-file'.
|
;; using `vertico-directory' functions which confuse `find-file'.
|
||||||
;; GAV: Builtin `fido-mode' improves the feel of the completion
|
;; GAV: Builtin `fido-mode' has more -1 votes than +1 votes.
|
||||||
;; (good), but adds an extra line to the minibuffer bottom (ugly).
|
|
||||||
(vertico-mode +1))
|
(vertico-mode +1))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
@ -3868,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
|
Listing [[lst:desktop-setup][setup desktop]] makes Emacs save its state between closing its session to
|
||||||
opening the next session.
|
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
|
#+name: lst:desktop-setup
|
||||||
#+begin_src emacs-lisp -n :results silent
|
#+begin_src emacs-lisp -n :results silent
|
||||||
(with-eval-after-load 'emacs
|
(with-eval-after-load 'emacs
|
||||||
;; Load and configure `Org' before enabling `desktop-save-mode'.
|
;; GAV: I fail to implement the idea of ChatGPT on how to reload
|
||||||
(desktop-save-mode t)
|
;; `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
|
(setopt desktop-buffers-not-to-save
|
||||||
(rx bos (or "*Apropos" "compilation*"))
|
(rx bos (or "*Apropos" "compilation*"))
|
||||||
desktop-modes-not-to-save
|
desktop-modes-not-to-save
|
||||||
'(emacs-lisp-mode image-mode tags-table-mode)))
|
'(emacs-lisp-mode image-mode tags-table-mode))
|
||||||
#+end_src
|
|
||||||
|
|
||||||
BUG: I fail to code a function to set the ~desktop-buffers-not-to-save-function~
|
(desktop-save-mode t))
|
||||||
option.
|
#+end_src
|
||||||
|
|
||||||
* Programming Tools
|
* Programming Tools
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
|
Loading…
Reference in New Issue
Block a user