Function: ibuffer-mouse-visit-buffer
ibuffer-mouse-visit-buffer is an interactive and byte-compiled
function defined in ibuffer.el.gz.
Signature
(ibuffer-mouse-visit-buffer EVENT)
Documentation
Visit the buffer chosen with the mouse.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ibuffer.el.gz
(defun ibuffer-mouse-visit-buffer (event)
"Visit the buffer chosen with the mouse."
(interactive "e")
(switch-to-buffer
(save-excursion
(mouse-set-point event)
(ibuffer-current-buffer t))))