From 79ecd1482c8df1fa2f0d3f2428637ea6b2334d3e Mon Sep 17 00:00:00 2001 From: JSDurand Date: Mon, 12 Jun 2023 21:52:38 +0800 Subject: basic: `find-function-on-key` * basic.el (help-map): Bind `find-function-on-key` to 'M-f' in the help-mode so that I can access this helpful functionality easily. --- basic.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/basic.el b/basic.el index fbd3b6f..bc0b321 100644 --- a/basic.el +++ b/basic.el @@ -135,6 +135,13 @@ (define-key global-map (vector ?\H-e) #'eshell) +;;; Find function on key + +;; I think it is a useful addition to the help system to bind this to +;; the help map. + +(define-key help-map (vector ?\M-f) #'find-function-on-key) + ;;; bury-buffer (define-key global-map (vector ?\C-\s-b) #'bury-buffer) -- cgit v1.2.3-18-g5258