--- a/ThirdParty/Pygments/pygments/lexers/resource.py Sun Apr 23 16:40:31 2017 +0200 +++ b/ThirdParty/Pygments/pygments/lexers/resource.py Tue Apr 25 18:36:38 2017 +0200 @@ -5,7 +5,7 @@ Lexer for resource definition files. - :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -81,4 +81,5 @@ } def analyse_text(text): - return text.startswith('root:table') + if text.startswith('root:table'): + return 1.0