about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-02 12:57:54 -0500
committerCase Duckworth2021-04-02 13:04:52 -0500
commit3e2d645fae0ddd2e62993c75f225c0e24eb11d28 (patch)
tree8071f1359212d12d0d0de02a3c566e322f646db3 /init.el
parentSet `find-function-C-source-directory' everywhere (diff)
downloademacs-3e2d645fae0ddd2e62993c75f225c0e24eb11d28.tar.gz
emacs-3e2d645fae0ddd2e62993c75f225c0e24eb11d28.zip
Change helpful advice to bindings
Diffstat (limited to 'init.el')
-rw-r--r--init.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/init.el b/init.el index 80034af..202ec06 100644 --- a/init.el +++ b/init.el
@@ -647,11 +647,11 @@ if ripgrep is installed, otherwise `consult-grep'."
647 647
648;;;;; Helpful 648;;;;; Helpful
649(setup (:straight helpful) 649(setup (:straight helpful)
650 (:advise describe-function :override #'helpful-callable 650 (:global "<help> f" helpful-callable
651 describe-variable :override #'helpful-variable 651 "<help> v" helpful-variable
652 describe-command :override #'helpful-callable 652 "<help> k" helpful-key
653 describe-key :override #'helpful-key 653 "<help> o" helpful-symbol
654 describe-symbol :override #'helpful-symbol)) 654 "C-c C-d" helpful-at-point))
655 655
656;;;; Utilities 656;;;; Utilities
657 657