bash-color-grc/colorfiles/conf.gcc

53 lines
809 B
Plaintext
Raw Normal View History

2015-01-25 18:36:02 +01:00
#
regexp=\b(g?cc|[gc]\+\+|g?as|ld)\b
colours=white bold
count=once
2015-01-25 18:36:02 +01:00
.........
#
regexp=^[^:\s]*?:\d+:
colours=bold magenta
.........
regexp=^[^:\s]*?:
colours=cyan
count=once
.........
#
regexp=\`[A-Za-z0-9_():&*]+( const)?\'
colours=magenta
.........
# compilation method modifiers
regexp=\s\-(O\d?|f\S+|pthread|g\S*|c|W\S,\S+)\b
colours=yellow
.........
2015-01-25 18:36:02 +01:00
# -O
regexp=\-O\d
colours=green
.........
# -o
2015-02-27 16:34:02 +01:00
regexp=\-o\s[^\s]+
2015-01-25 18:36:02 +01:00
colours=yellow
.........
# warning and error won't work, unless you redirect also
# stderr to grcat
#
# warning
regexp=[Ww]arning[:\b]
2015-01-25 18:36:02 +01:00
colours=white
.........
regexp=warning:
colours=bold yellow
count=once
.........
# error
regexp=[Ee]rror[:\b]
2015-01-25 18:36:02 +01:00
colours=bold white
.........
regexp=error:
colours=bold white on_red
count=once
.........
#note
regexp=note:
colours=bold cyan
count=once