# HG changeset patch # User Andreas Nolda # Date 1587902046 -7200 # Sun Apr 26 13:54:06 2020 +0200 # Node ID 130526be7aa5c4eb312c8e7b0ac3bdc6f9537de2 # Parent 73240fff5ac057a9f743be60ac69c245ecb92e0e change color of ellipsis in abbreviations diff --git a/xgrep.py b/xgrep.py --- a/xgrep.py +++ b/xgrep.py @@ -84,7 +84,7 @@ lines = string.splitlines() string = lines[0] if len(lines) > 1: - string += " ..." + string += " " + term.bright_black("...") if string.endswith("\n"): string = string[:-1] return string