From a156be2ed380fa842b814ab9b8e2b31ce0f1c7ac Mon Sep 17 00:00:00 2001 From: Gerard Vermeulen Date: Tue, 4 Feb 2025 18:06:16 +0100 Subject: [PATCH] Add commentary to the previous commit --- README.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index d2440c9..56486cf 100644 --- a/README.org +++ b/README.org @@ -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