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.

This variable was added, or its default value changed, in projectile version 0.9.2.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/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
  :package-version '(projectile . "0.9.2"))