Function: tab-line--current-tab
tab-line--current-tab is a byte-compiled function defined in
tab-line.el.gz.
Signature
(tab-line--current-tab)
Documentation
Return the current tab in the tab line.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-line.el.gz
(defun tab-line--current-tab ()
"Return the current tab in the tab line."
(seq-find (lambda (tab)
(eq (if (bufferp tab) tab (alist-get 'buffer tab))
(current-buffer)))
(funcall tab-line-tabs-function)))