From d95d8adaac9386fcacb5abfd33fcb8a987a98046 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 12 Sep 2026 01:01:11 -0700 Subject: emacs: Add settings for Help --- emacs/.emacs.d/init.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'emacs') diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index f67f424..56b4971 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -1027,4 +1027,16 @@ Snippets! (define-key yas-minor-mode-map (kbd "SPC") yas-maybe-expand) (setq-default yas-buffer-local-condition yas-not-string-or-comment-condition)) + +* Help + +I've always been annoyed that calling any of the help functions never select the help buffer. Thankfully due to [[https://irreal.org/blog/?p=13752][Irreal: A Short Report On Help Focus]] I know how to fix that now. + +That got me looking at [[elisp:(customize-group "help")]] and discover [[help:help-enable-variable-value-editing]]. + +#+begin_src emacs-lisp + (use-package help + :custom + (help-window-select t) + (help-enable-variable-value-editing t)) #+end_src -- cgit v1.3-2-g0d8e