diff --git a/colout/colout_g++.py b/colout/colout_g++.py index d10e320..250bdc8 100644 --- a/colout/colout_g++.py +++ b/colout/colout_g++.py @@ -8,6 +8,8 @@ def theme(): import gettext import locale + section="blue" + # get g++ version gv = os.popen("g++ -dumpversion").read().strip() @@ -41,9 +43,15 @@ def theme(): # Highlight message start: # path file ext : line : col … [ "(/.*?)/([^/:]+): (In .*)"+qo, - "green", + section, "normal,normal,bold" ], + [ "(/.*?)/([^/:]+): (At .*)", + section, + "normal,normal,bold" ], + + [ _("In file included from"), section ], + # Highlight locations: # path file ext : line : col … [ "(/.*?)/([^/:]+):([0-9]+):*([0-9]*)(.*)",