Function: bookmark-bmenu-other-window-with-mouse
bookmark-bmenu-other-window-with-mouse is an interactive and
byte-compiled function defined in bookmark.el.gz.
Signature
(bookmark-bmenu-other-window-with-mouse EVENT)
Documentation
Jump to bookmark at mouse EVENT position in other window.
Move point in menu buffer to the position of EVENT and leave bookmark menu visible.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-other-window-with-mouse (event)
"Jump to bookmark at mouse EVENT position in other window.
Move point in menu buffer to the position of EVENT and leave
bookmark menu visible."
(interactive "e" bookmark-bmenu-mode)
(with-current-buffer (window-buffer (posn-window (event-end event)))
(save-excursion
(goto-char (posn-point (event-end event)))
(bookmark-bmenu-other-window))))