Function: projectile-session--current-tab-index
projectile-session--current-tab-index is a byte-compiled function
defined in projectile.el.
Signature
(projectile-session--current-tab-index)
Documentation
Return the 1-based index of the selected frame's current tab.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-session--current-tab-index ()
"Return the 1-based index of the selected frame's current tab."
(1+ (or (cl-position 'current-tab (tab-bar-tabs) :key #'car :test #'eq) 0)))