Add find-function-setup-keys bindings for find-library commands

* lisp/emacs-lisp/find-func.el (find-function-setup-keys): Add `L'
bindings for the find-library family of commands (bug#51240).
This commit is contained in:
Lars Ingebrigtsen 2022-06-30 12:49:40 +02:00
parent 274fcfa850
commit 2f0ed2280e
2 changed files with 9 additions and 1 deletions

View 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)