diff options
author | Alan Pearce | 2017-12-13 10:54:14 +0100 |
---|---|---|
committer | Alan Pearce | 2017-12-13 10:54:14 +0100 |
commit | e08c92c631b1dcbbcc8f78f5c8265032010e1124 (patch) | |
tree | 988f5cd6269d82edca6d1e5b14a3c6d222e829fc /emacs | |
parent | 8f00c98d5d06a0f9eed7ffa717aa9141d19b8ca7 (diff) | |
download | dotfiles-e08c92c631b1dcbbcc8f78f5c8265032010e1124.tar.lz dotfiles-e08c92c631b1dcbbcc8f78f5c8265032010e1124.tar.zst dotfiles-e08c92c631b1dcbbcc8f78f5c8265032010e1124.zip |
Emacs: Bind helpful keys
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/main.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 0f50e87..1ef88f7 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -1188,7 +1188,10 @@ With two prefix arguments, write out the day and month name." ;;;;; helpful -(use-package helpful) +(use-package helpful + :bind (("C-h k" . helpful-key) + ("C-h v" . helpful-variable) + ("C-h f" . helpful-callable))) ;;;;; ehelp |