diff options
author | Alan Pearce | 2018-03-06 13:34:59 +0100 |
---|---|---|
committer | Alan Pearce | 2018-03-06 13:34:59 +0100 |
commit | 64b1ff7265e2fb004ccd8625a0a0079f53439550 (patch) | |
tree | bf97d3a8d265adbf9ab9dca59e1e693c52303c27 /emacs/.emacs.d | |
parent | 65ce8c999a001071ca452e1ccf65f5b4ca8e8062 (diff) | |
download | nixfiles-64b1ff7265e2fb004ccd8625a0a0079f53439550.tar.lz nixfiles-64b1ff7265e2fb004ccd8625a0a0079f53439550.tar.zst nixfiles-64b1ff7265e2fb004ccd8625a0a0079f53439550.zip |
Emacs: fix helpful keybinds
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r-- | emacs/.emacs.d/main.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index b6fe9781..6ecfaffb 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -1196,9 +1196,11 @@ With two prefix arguments, write out the day and month name." ;;;;; helpful (use-package helpful - :bind (("C-h k" . helpful-key) - ("C-h v" . helpful-variable) - ("C-h f" . helpful-callable))) + :after ehelp + :bind (:map ehelp-map + ("k" . helpful-key) + ("v" . helpful-variable) + ("f" . helpful-callable))) ;;;;; ehelp |