Function: projectile--get-command-history
projectile--get-command-history is a byte-compiled function defined in
projectile.el.
Signature
(projectile--get-command-history PROJECT-ROOT)
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile--get-command-history (project-root)
(or (gethash project-root projectile-project-command-history)
(puthash project-root
(make-ring 16)
projectile-project-command-history)))