diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-30 12:49:40 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-30 12:49:40 +0200 |
commit | 2f0ed2280e0075c68ab9b110068bf5395fe256e3 (patch) | |
tree | f5c44b50106f09495c4431ebcc72e106faafec73 /lisp/emacs-lisp/find-func.el | |
parent | 274fcfa8508dd50a975aa891ee9376e389a1af19 (diff) | |
download | emacs-2f0ed2280e0075c68ab9b110068bf5395fe256e3.tar.gz emacs-2f0ed2280e0075c68ab9b110068bf5395fe256e3.tar.bz2 emacs-2f0ed2280e0075c68ab9b110068bf5395fe256e3.zip |
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).
Diffstat (limited to 'lisp/emacs-lisp/find-func.el')
-rw-r--r-- | lisp/emacs-lisp/find-func.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index ac84b50b5fc..486d5d08614 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -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) |