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.

If this command needs to split the current window, it by default obeys the user options split-height-threshold and split-width-threshold, when it decides whether to split the window horizontally or vertically.

View in manual

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.
If this command needs to split the current window, it by default obeys
the user options `split-height-threshold' and `split-width-threshold',
when it decides whether to split the window horizontally or vertically."
  (interactive
   (list (and current-prefix-arg
	      (read-file-name "Jump to Dired file: "))))
  (dired-jump t file-name))