Variable: projectile-globally-ignored-file-regexps
projectile-globally-ignored-file-regexps is a customizable variable
defined in projectile.el.
Value
nil
Documentation
A list of regexps matching files ignored by Projectile.
Unlike projectile-globally-ignored-files and
projectile-globally-ignored-directories, which speak gitignore
patterns, the entries here are Emacs regexps, matched against absolute
file names. They complement the pattern-based options; because they
can't be handed to an external tool, nor expressed as globs, they are
only applied by native indexing.
See also projectile-ignored-file-p and
projectile-ignored-directory-p.
This variable was added, or its default value changed, in projectile version 2.9.0.
Aliases
projectile-global-ignore-file-patterns (obsolete since 3.4.0)
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-globally-ignored-file-regexps
nil
"A list of regexps matching files ignored by Projectile.
Unlike `projectile-globally-ignored-files' and
`projectile-globally-ignored-directories', which speak gitignore
patterns, the entries here are Emacs regexps, matched against absolute
file names. They complement the pattern-based options; because they
can't be handed to an external tool, nor expressed as globs, they are
only applied by `native' indexing.
See also `projectile-ignored-file-p' and
`projectile-ignored-directory-p'."
:group 'projectile
:type '(repeat string)
:safe #'list-of-strings-p
:package-version '(projectile . "2.9.0"))