branch: externals/consult commit a5715af2bbe74cbf12e45c542811996c19f72e4d Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
consult-grep preview was broken due to invalid regexp (Fix #404) --- consult.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consult.el b/consult.el index 2c8c49b..eb0b9d3 100644 --- a/consult.el +++ b/consult.el @@ -222,7 +222,7 @@ See `consult--multi' for a description of the source values." :type 'integer) (defconst consult--grep-match-regexp - "\\`\\(?:./\\)?\\([^\n:]+\\):\\([0-9]+\\):" + "\\`\\(?:\\./\\)?\\([^\n:]+\\):\\([0-9]+\\):" "Regexp used to match file and line of grep output.") ;; TODO remove deprecation