Function: ffap-alternate-file-other-window

ffap-alternate-file-other-window is an interactive and byte-compiled function defined in ffap.el.gz.

Signature

(ffap-alternate-file-other-window FILENAME)

Documentation

Like ffap and find-alternate-file-other-window.

Only intended for interactive use.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defun ffap-alternate-file-other-window (filename)
  "Like `ffap' and `find-alternate-file-other-window'.
Only intended for interactive use."
  (interactive (list (ffap-prompter nil " alternate file other window")))
  (let ((ffap-file-finder 'find-alternate-file-other-window))
    (find-file-at-point filename)))