Variable: projectile--repo-url-scheme-regexp
projectile--repo-url-scheme-regexp is a variable defined in
projectile.el.
Value
"\\`[a-zA-Z][a-zA-Z0-9+.-]*://\\(?:[^@/]*@\\)?\\([^/:]+\\)\\(?::[0-9]+\\)?/+\\(.+\\)\\'"
Documentation
Match a scheme://[user@]host[:port]/path remote URL.
Group 1 is the host, group 2 the path.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defconst projectile--repo-url-scheme-regexp
"\\`[a-zA-Z][a-zA-Z0-9+.-]*://\\(?:[^@/]*@\\)?\\([^/:]+\\)\\(?::[0-9]+\\)?/+\\(.+\\)\\'"
"Match a `scheme://[user@]host[:port]/path' remote URL.
Group 1 is the host, group 2 the path.")