grep-mode-font-lock-keywords
grep-mode-font-lock-keywords is a variable defined in `
grep.el
'.
Its value is shown
below.
- This variable may be risky if used as a file-local variable.
Documentation:
Additional things to highlight in grep output.
This gets tacked on the end of the generated expressions.
Value:
((": \\(.+\\): \\(?:Permission denied\\|No such \\(?:file or directory\\|device or address\\)\\)$" 1 grep-error-face)
("^Grep[/a-zA-z]* started.*"
(0
'(face nil compilation-message nil help-echo nil mouse-face nil)
t))
("^Grep[/a-zA-z]* finished \\(?:(\\(matches found\\))\\|with \\(no matches found\\)\\).*"
(0
'(face nil compilation-message nil help-echo nil mouse-face nil)
t)
(1 compilation-info-face nil t)
(2 compilation-warning-face nil t))
("^Grep[/a-zA-z]* \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
(0
'(face nil compilation-message nil help-echo nil mouse-face nil)
t)
(1 grep-error-face)
(2 grep-error-face nil t))
("^.+?[-=][0-9]+[-=].*\n"
(0 grep-context-face)))