Function: xref-find-definitions-other-frame

xref-find-definitions-other-frame is an autoloaded, interactive and byte-compiled function defined in xref.el.gz.

Signature

(xref-find-definitions-other-frame IDENTIFIER)

Documentation

Like xref-find-definitions but switch to the other frame.

View in manual

Probably introduced at or before Emacs version 25.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
;;;###autoload
(defun xref-find-definitions-other-frame (identifier)
  "Like `xref-find-definitions' but switch to the other frame."
  (interactive (list (xref--read-identifier "Find definitions of: ")))
  (xref--find-definitions identifier 'frame))