Function: tab-switcher-mouse-select

tab-switcher-mouse-select is an interactive and byte-compiled function defined in tab-bar.el.gz.

Signature

(tab-switcher-mouse-select EVENT)

Documentation

Select the window configuration whose line you click on.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-switcher-mouse-select (event)
  "Select the window configuration whose line you click on."
  (interactive "e")
  (set-buffer (window-buffer (posn-window (event-end event))))
  (goto-char (posn-point (event-end event)))
  (tab-switcher-select))