Function: dired-x-find-file-other-window

dired-x-find-file-other-window is an interactive and byte-compiled function defined in dired-x.el.gz.

Signature

(dired-x-find-file-other-window FILENAME)

Documentation

Edit file FILENAME, in another window.

Like find-file-other-window, except that when called interactively with a prefix argument, when it offers the filename near point as a default.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dired-x.el.gz
(defun dired-x-find-file-other-window (filename)
  "Edit file FILENAME, in another window.
Like `find-file-other-window', except that when called interactively with
a prefix argument, when it offers the filename near point as a default."
  (interactive (list (dired-x-read-filename-at-point "Find file: ")))
  (find-file-other-window filename))