Function: bookmark-jump-other-window

bookmark-jump-other-window is an autoloaded, interactive and byte-compiled function defined in bookmark.el.gz.

Signature

(bookmark-jump-other-window BOOKMARK)

Documentation

Jump to BOOKMARK in another window. See bookmark-jump for more.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
;;;###autoload
(defun bookmark-jump-other-window (bookmark)
  "Jump to BOOKMARK in another window.  See `bookmark-jump' for more."
  (interactive
   (list (bookmark-completing-read "Jump to bookmark (in another window)"
                                   bookmark-current-bookmark)))
  (bookmark-jump bookmark 'switch-to-buffer-other-window))