Variable: projectile-dirconfig-comment-prefix
projectile-dirconfig-comment-prefix is a customizable variable defined
in projectile.el.
Value
nil
Documentation
projectile-dirconfig-file(var)/projectile-dirconfig-file(fun) comment start marker.
If specified, starting a line in a project's .projectile file with this character marks that line as a comment instead of a pattern. Similar to '#' in .gitignore files.
This variable was added, or its default value changed, in projectile version 2.2.0.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-dirconfig-comment-prefix
nil
"`projectile-dirconfig-file' comment start marker.
If specified, starting a line in a project's .projectile file with this
character marks that line as a comment instead of a pattern.
Similar to '#' in .gitignore files."
:group 'projectile
:type '(choice (const :tag "No comment syntax" nil)
(character :tag "Comment character"))
:package-version '(projectile . "2.2.0"))