change color of ellipsis in abbreviations
1 files changed, 1 insertions(+), 1 deletions(-)

M xgrep.py
M xgrep.py +1 -1
@@ 84,7 84,7 @@ def serialize_match(match):
         lines = string.splitlines()
         string = lines[0]
         if len(lines) > 1:
-            string += " ..."
+            string += " " + term.bright_black("...")
     if string.endswith("\n"):
         string = string[:-1]
     return string