Add commentary to the previous commit

This commit is contained in:
Gerard Vermeulen 2025-02-04 18:06:16 +01:00
parent ebecc914aa
commit a156be2ed3

View File

@ -1407,14 +1407,15 @@ to {{{kbd(C-c ')}}}). Calling [[info:embark#The default action on a target][emb
#+begin_src emacs-lisp -n :results silent
;; https://elpa.gnu.org/packages/embark.html
(when (ensure-package-installation 'embark)
;; Does not seem useful, but look into:
;; (add-hook 'eldoc-documentation-functions #'embark-eldoc-first-target)
;; (setopt eldoc-documentation-strategy #'eldoc-documentation-compose-eagerly)
;; (add-to-list 'vertico-multiform-categories '(embark-keybinding grid))
;; (vertico-multiform-mode)
(keymap-global-set "C-+" #'embark-dwim)
(keymap-global-set "C-=" #'embark-act)
;; Calling `embark-bindings' is not better than `describe-keybinding' (C-h b).
(keymap-global-set "C-h B" #'embark-bindings))
#+end_src