Function: find-function-setup-keys

find-function-setup-keys is an autoloaded and byte-compiled function defined in find-func.el.gz.

Signature

(find-function-setup-keys)

Documentation

Define some key bindings for the find-function family of functions.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
;;;###autoload
(defun find-function-setup-keys ()
  "Define some key bindings for the `find-function' family of functions."
  (define-key ctl-x-map "F" 'find-function)
  (define-key ctl-x-4-map "F" 'find-function-other-window)
  (define-key ctl-x-5-map "F" 'find-function-other-frame)
  (define-key ctl-x-map "K" 'find-function-on-key)
  (define-key ctl-x-4-map "K" 'find-function-on-key-other-window)
  (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-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))