aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-09-12 01:01:11 -0700
committerGravatar Tom Willemse2026-09-12 01:01:11 -0700
commitd95d8adaac9386fcacb5abfd33fcb8a987a98046 (patch)
tree00f358778b9decf8b2850db0e73baf20da5ced0c /emacs
parent0dfee119e46b248ab37c5a93d6b8e850a574a6f3 (diff)
downloadnew-dotfiles-d95d8adaac9386fcacb5abfd33fcb8a987a98046.tar.gz
new-dotfiles-d95d8adaac9386fcacb5abfd33fcb8a987a98046.zip
emacs: Add settings for Help
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org12
1 files changed, 12 insertions, 0 deletions
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