Function: projectile-session--make-project-tab

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

Signature

(projectile-session--make-project-tab ROOT)

Documentation

Create and select a fresh tab bound to project ROOT.

The new tab is stamped with ROOT and named; populating it is left to the caller.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-session--make-project-tab (root)
  "Create and select a fresh tab bound to project ROOT.
The new tab is stamped with ROOT and named; populating it is left to the
caller."
  (tab-bar-new-tab)
  (projectile-session--set-tab-root (projectile-session--current-tab) root)
  (projectile-session--refresh-tab-names))