Variable: projectile-dirconfig-comment-prefix

projectile-dirconfig-comment-prefix is a customizable variable defined in projectile.el.

Value

nil

Documentation

`projectile-dirconfig-file comment start marker.


If specified, starting a line in a projects .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-20260310.858/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 'character
  :package-version '(projectile . "2.2.0"))