colout/colout_g++.py
nojhan 3a51a71014 More harmonious cmake/g++ themes
CMake theme less colorful, in cyan/green, color errors.
Better g++ messages parsing.
2013-03-26 23:38:16 +01:00

14 lines
440 B
Python

def theme():
return [
[ "(fatal )*(error)", "red", "bold" ],
[ "warning", "magenta", "bold" ],
[ "note", "blue", "bold" ],
# [-Wflag]
[ "\[-W.*\]", "magenta"],
# Filename:line number
[ "(/.*?)/([^/]+\.)(h|cp*):([0-9]+):*[0-9]*(.*)", "white,white,white,yellow,none", "normal,bold,bold,normal"],
# source code in single quotes
[ "'(.*)'", "Cpp", "monokai" ]
]