Function: dired-jump-other-window
dired-jump-other-window is an autoloaded, interactive and
byte-compiled function defined in dired.el.gz.
Signature
(dired-jump-other-window &optional FILE-NAME)
Documentation
Like C-x C-j (dired-jump) (dired-jump) but in other window.
Probably introduced at or before Emacs version 24.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/dired.el.gz
;;;###autoload
(defun dired-jump-other-window (&optional file-name)
"Like \\[dired-jump] (`dired-jump') but in other window."
(interactive
(list (and current-prefix-arg
(read-file-name "Jump to Dired file: "))))
(dired-jump t file-name))