From 583a5dea9126877224953dd131c5d3c26182a181 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 30 Jun 2024 10:23:28 +0200 Subject: [PATCH] Introduce helpful.el --- init.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/init.el b/init.el index 8912523..2e42d80 100644 --- a/init.el +++ b/init.el @@ -400,6 +400,10 @@ :pin "melpa-stable" :commands (exec-path-from-shell-copy-envs)) +(use-package helpful + :pin "melpa-stable" + :ensure t) + (use-package hydra :pin "melpa-stable" :ensure t) @@ -3070,6 +3074,10 @@ eventuelly be set to nil, however)." (bind-key "C-c o" #'hydra-org-custom/body) (bind-key "C-c r" #'recentf) (bind-key "C-c t" #'hydra-toggle/body) + (bind-key "C-h f" #'helpful-callable) + (bind-key "C-h v" #'helpful-variable) + (bind-key "C-h k" #'helpful-key) + (bind-key "C-h x" #'helpful-command) (bind-key "C-h C-f" #'find-function) (bind-key "C-h C-k" #'find-function-on-key) (bind-key "C-h C-v" #'find-variable)