]> git.eshelyaron.com Git - emacs.git/commitdiff
Add find-function-setup-keys bindings for find-library commands
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 30 Jun 2022 10:49:40 +0000 (12:49 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 30 Jun 2022 10:49:40 +0000 (12:49 +0200)
* lisp/emacs-lisp/find-func.el (find-function-setup-keys): Add `L'
bindings for the find-library family of commands (bug#51240).

etc/NEWS
lisp/emacs-lisp/find-func.el

index 1ec9603640d91673fd8d67fc19c119588833beff..0dc76746554a030cd80bc9a7f5b0025d77816db0 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -314,6 +314,11 @@ startup.  Previously, these functions ignored
 \f
 * Changes in Emacs 29.1
 
+** New bindings in 'find-function-setup-keys' for 'find-library'.
+When 'find-function-setup-keys' is enabled, 'C-x L' is now bound to
+'find-library', 'C-x 4 L' is now bound to 'find-library-other-window'
+and 'C-x 5 L' is now bound to 'find-library-other-frame'.
+
 +++
 ** New key binding after 'M-x' or 'M-X': 'M-X'.
 Emacs allows different completion predicates to be used with 'M-x'
index ac84b50b5fcfd45709266b9fda8ac588a986a9b2..486d5d08614e8105dc726189916b0c44fe1ce5cf 100644 (file)
@@ -800,7 +800,10 @@ See `find-function-on-key'."
   (define-key ctl-x-5-map "K" 'find-function-on-key-other-frame)
   (define-key ctl-x-map "V" 'find-variable)
   (define-key ctl-x-4-map "V" 'find-variable-other-window)
-  (define-key ctl-x-5-map "V" 'find-variable-other-frame))
+  (define-key ctl-x-5-map "V" 'find-variable-other-frame)
+  (define-key ctl-x-map "L" 'find-library)
+  (define-key ctl-x-4-map "L" 'find-library-other-window)
+  (define-key ctl-x-5-map "L" 'find-library-other-frame))
 
 (provide 'find-func)