Function: hpath:find-other-window

hpath:find-other-window is an interactive and byte-compiled function defined in hpath.el.

Signature

(hpath:find-other-window FILENAME)

Documentation

Edit file FILENAME, in another window or using an external program.

May create a new window, or reuse an existing one; see the function display-buffer. See documentation of hpath:find for details. Returns non-nil iff file is displayed within a buffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defun hpath:find-other-window (filename)
  "Edit file FILENAME, in another window or using an external program.
May create a new window, or reuse an existing one; see the
function `display-buffer'.  See documentation of `hpath:find' for
details.  Returns non-nil iff file is displayed within a buffer."
  (interactive "FFind file in other window: ")
  (hpath:find filename 'other-window))