Function: projectile--move-current-project-to-end
projectile--move-current-project-to-end is a byte-compiled function
defined in projectile.el.
Signature
(projectile--move-current-project-to-end PROJECTS)
Documentation
Move current project (if any) to the end of the list of PROJECTS.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile--move-current-project-to-end (projects)
"Move current project (if any) to the end of the list of PROJECTS."
(if-let* ((project (projectile-project-root)))
(append
(projectile--remove-current-project projects)
(list (abbreviate-file-name project)))
projects))