Function: consult--git-grep-make-builder
consult--git-grep-make-builder is a byte-compiled function defined in
consult.el.
Signature
(consult--git-grep-make-builder PATHS)
Documentation
Create grep command line builder given PATHS.
Source Code
;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
;;;;; Command: consult-git-grep
(defun consult--git-grep-make-builder (paths)
"Create grep command line builder given PATHS."
(let ((cmd (consult--build-args consult-git-grep-args)))
(lambda (input)
(pcase-let* ((`(,arg . ,opts) (consult--command-split input))
(flags (append cmd opts))
(ignore-case (or (member "-i" flags) (member "--ignore-case" flags))))
(if (or (member "-F" flags) (member "--fixed-strings" flags))
(cons (append cmd (list "-e" arg) opts paths)
(apply-partially #'consult--highlight-literals arg ignore-case))
(pcase-let ((`(,re . ,hl) (consult--compile-regexp arg 'extended ignore-case)))
(when re
(cons (append cmd
(cdr (mapcan (lambda (x) (list "--and" "-e" x)) re))
opts paths)
hl))))))))