Function: projectile--wildcard-p
projectile--wildcard-p is a byte-compiled function defined in
projectile.el.
Signature
(projectile--wildcard-p NAME)
Documentation
Return non-nil if NAME has a shell wildcard character in it.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--wildcard-p (name)
"Return non-nil if NAME has a shell wildcard character in it."
(string-match-p "[][*?]" name))