Function: bookmark-bmenu-switch-other-window
bookmark-bmenu-switch-other-window is an interactive and byte-compiled
function defined in bookmark.el.gz.
Signature
(bookmark-bmenu-switch-other-window)
Documentation
Make the other window select this line's bookmark.
The current window remains selected.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-switch-other-window ()
"Make the other window select this line's bookmark.
The current window remains selected."
(interactive nil bookmark-bmenu-mode)
(let ((bookmark (bookmark-bmenu-bookmark))
(fun (lambda (b) (display-buffer b t))))
(bookmark--jump-via bookmark fun)))