Function: projectile-bookmark--name-prefix
projectile-bookmark--name-prefix is a byte-compiled function defined
in projectile.el.
Signature
(projectile-bookmark--name-prefix &optional PROJECT)
Documentation
Return the bookmark name prefix for PROJECT.
PROJECT is a project root and defaults to the current project.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-bookmark--name-prefix (&optional project)
"Return the bookmark name prefix for PROJECT.
PROJECT is a project root and defaults to the current project."
(format "%s: " (projectile-project-name project)))