The Complete Computer

Smarter Emacs Help

LifeTechEmacsArcology

Now with more helpful help:

emacs-lisp source: 
(provide 'cce/hydra-help)
emacs-lisp source: 
(use-package helpful) (use-package which-key :diminish :config (which-key-mode)) (defhydra hydra-help (:columns 4) ("v" helpful-variable "Desc Variable") ("w" embark-bindings "Desc Bindings") ("s" describe-syntax "Desc Syntax") ("." helpful-at-point "At Point") ("P" describe-package "Desc Package") ("o" describe-symbol "Desc Symbols") ("m" describe-mode "Desc Mode") ("k" helpful-key "Desc Keys") ("f" helpful-callable "Desc Functions") ("d" apropos-documentation "Apropos Docs") ("a" apropos-command "Apropos Commands") ("j" cce/man-at-point "Man for symbol at point.") ("r" info-emacs-manual "Emacs Info Pages") ("p" finder-by-keyword "Find Package by Keyword") ("l" view-lossage "Recent Commands") ("i" info "Info Index") ("e" view-echo-area-messages "*Messages*") ("b" describe-bindings "List Bindings") ("S" info-lookup-symbol "Lookup Symbol in Info") ("q" nil))
emacs-lisp source: 
(bind-keys ("C-h w" . embark-bindings) ("C-h <SPC>" . hydra-help/body)) (with-eval-after-load 'evil-leader (evil-leader/set-key "h" 'hydra-help/body))