Function: xref-find-definitions-other-window

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

Signature

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

Documentation

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

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-window (identifier)
  "Like `xref-find-definitions' but switch to the other window."
  (interactive (list (xref--read-identifier "Find definitions of: ")))
  (xref--find-definitions identifier 'window))