diff options
author | William Carroll <wpcarro@gmail.com> | 2020-10-03T17·15+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-10-03T17·15+0100 |
commit | 562c82f3f2801e663341d7a6c34893e215615cb3 (patch) | |
tree | de68a37f18ca4065b36cc11a6a946f18826c6c9a /emacs | |
parent | 4cd552de28a326a68fed77bc48257d0f815d94c4 (diff) |
Bind "g SPC" to #'Info-scroll-up
I'm using the "g <char>" pattern that evil-collection uses, which I think is okay.
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/wpc/keybindings.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/keybindings.el b/emacs/.emacs.d/wpc/keybindings.el index a50f5510d2a1..9a9f35472fc6 100644 --- a/emacs/.emacs.d/wpc/keybindings.el +++ b/emacs/.emacs.d/wpc/keybindings.el @@ -310,6 +310,7 @@ :states '(normal) :keymaps '(Info-mode-map) "SPC" nil + "g SPC" #'Info-scroll-up "RET" #'Info-follow-nearest-node "<C-tab>" #'Info-next "<C-S-iso-lefttab>" #'Info-prev |