diff options
| -rw-r--r-- | emacs/.emacs.d/init.org | 12 |
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 |
