Variable: projectile-fossil-command

projectile-fossil-command is a customizable variable defined in projectile.el.

Value

"fossil ls | tr '\\n' '\\0'"

Documentation

Command used by projectile to get the files in a fossil project.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defcustom projectile-fossil-command (concat "fossil ls | "
                                             (when (eq system-type 'windows-nt)
                                               "dos2unix | ")
                                             "tr '\\n' '\\0'")
  "Command used by projectile to get the files in a fossil project."
  :group 'projectile
  :type 'string)