Function: consult--grep-make-builder
consult--grep-make-builder is a byte-compiled function defined in
consult.el.
Signature
(consult--grep-make-builder PATHS)
Documentation
Build grep command line and grep across PATHS.
Source Code
;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defun consult--grep-make-builder (paths)
"Build grep command line and grep across PATHS."
(let* ((cmd (consult--build-args consult-grep-args))
(type (if (consult--grep-lookahead-p (car cmd) "-P") 'pcre 'extended)))
(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 type ignore-case)))
(when re
(cons (append cmd
(list (if (eq type 'pcre) "-P" "-E") ;; perl or extended
"-e" (consult--join-regexps re type))
opts paths)
hl))))))))