Function: projectile-session--select-tab

projectile-session--select-tab is a byte-compiled function defined in projectile.el.

Signature

(projectile-session--select-tab TAB)

Documentation

Select TAB, restoring the project layout it holds.

Selection goes through the tab's project root, so it stays correct even after other tabs' cons cells have been rebuilt.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-session--select-tab (tab)
  "Select TAB, restoring the project layout it holds.
Selection goes through the tab's project root, so it stays correct even
after other tabs' cons cells have been rebuilt."
  (let ((root (projectile-session--tab-root tab)))
    (when root
      (projectile-session--select-tab-by-root root))))