From 3f29bd26f175cae28c6431c170e22f53ce4d53f4 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Tue, 12 Mar 2013 14:58:44 +0200 Subject: [PATCH] Add a couple of jump-to-def keybindings --- core/prelude-global-keybindings.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/prelude-global-keybindings.el b/core/prelude-global-keybindings.el index 3593aba..3c07e04 100644 --- a/core/prelude-global-keybindings.el +++ b/core/prelude-global-keybindings.el @@ -68,6 +68,11 @@ ;; A complementary binding to the apropos-command (C-h a) (define-key 'help-command "A" 'apropos) +(global-set-key (kbd "C-h C-f") 'find-function) +(global-set-key (kbd "C-h C-k") 'find-function-on-key) +(global-set-key (kbd "C-h C-v") 'find-variable) +(global-set-key (kbd "C-h C-l") 'find-library) + ;; 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)