From 42bd619866fb5262f4fc1e35e581ba7f47b25c5c Mon Sep 17 00:00:00 2001 From: ZyX Date: Fri, 5 Sep 2014 19:23:07 +0400 Subject: [PATCH] Remove `{module}.{function}` default highlighting group It is both not documented and not supported by linter in any case. --- powerline/segment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerline/segment.py b/powerline/segment.py index abcbe8a4..edcda434 100644 --- a/powerline/segment.py +++ b/powerline/segment.py @@ -311,7 +311,7 @@ def gen_segment_getter(pl, ext, common_config, theme_configs, default_module, ge pass if segment_type == 'function': - highlight_group = [module + '.' + function_name, function_name] + highlight_group = [function_name] else: highlight_group = segment.get('highlight_group') or name