From 08822121933cc18f2f74696593ccbac9bb1faefb Mon Sep 17 00:00:00 2001 From: Gerard Vermeulen Date: Mon, 19 Aug 2024 09:47:59 +0200 Subject: [PATCH] Set `apropos-do-all' to t --- README.org | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 1bf1ba9..8b8d925 100644 --- a/README.org +++ b/README.org @@ -927,14 +927,17 @@ output to =stdout=. :CUSTOM_ID: sec:help :END: -Listing [[lst:setup-help]] enriches the help buffer. Table [[tab:help-key-bindings]] -lists a number of key bindings to start playing with the help facilities of -Emacs. Try {{{kbd(C-h o)}}} instead of {{{kbd(C-h f)}}} or {{{kbd(C-h v)}}}. +Listing [[lst:setup-help]] enriches the help buffer and commands in the =apropos= +library. Table [[tab:help-key-bindings]] lists a number of key bindings to start +playing with the help facilities of Emacs. Try {{{kbd(C-h o)}}} instead of +{{{kbd(C-h f)}}} or {{{kbd(C-h v)}}}. #+caption[Setup =help=]: #+caption: Setup =help=. #+name: lst:setup-help #+begin_src emacs-lisp -n :results silent +(with-eval-after-load 'apropos + (setopt apropos-do-all t)) (with-eval-after-load 'help-fns ;; ChatGPT recommends to require `shortdoc' contrary to the ;; `shortdoc-help-fns-examples-function' documentation string.