From 3a9ee203b82fed13506d442a66b12d7cd471d08d Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Thu, 13 Nov 2014 15:58:28 +0200 Subject: [PATCH] Bind info-display-manual to C-h C-i --- core/prelude-global-keybindings.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/prelude-global-keybindings.el b/core/prelude-global-keybindings.el index 1a9c687..9abab9d 100644 --- a/core/prelude-global-keybindings.el +++ b/core/prelude-global-keybindings.el @@ -74,6 +74,8 @@ (define-key 'help-command (kbd "C-v") 'find-variable) (define-key 'help-command (kbd "C-l") 'find-library) +(define-key 'help-command (kbd "C-i") 'info-display-manual) + ;; a complement to the zap-to-char command, that doesn't eat up the target character (autoload 'zap-up-to-char "misc" "Kill up to, but not including ARGth occurrence of CHAR.") (global-set-key (kbd "M-Z") 'zap-up-to-char)