From d1ea18113533ae14818411725a692ffe4672e490 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 2 Jun 2019 15:22:48 -0400 Subject: [PATCH] hldiff.py: don't highlight -/+ in filenames --- contrib/hldiff.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/hldiff.py b/contrib/hldiff.py index 716dbce..9c81663 100755 --- a/contrib/hldiff.py +++ b/contrib/hldiff.py @@ -4,7 +4,7 @@ import sys import re ansi_escape = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]') -stat_re = re.compile(r'(\+*)(\-*)') +stat_re = re.compile(r'(| \d+ )(\+*)(\-*)') lines_re = re.compile(r'@@ (-\d+,\d+ \+\d+,\d+) @@') patch = sys.stdin.read().replace("\r\n", "\n") @@ -33,6 +33,6 @@ for line in patch.split("\n"): else: if line.startswith(" ") and "|" in line and ("+" in line or "-" in line): line = stat_re.sub( - f'{Fore.GREEN}\\1{Fore.RED}\\2{Style.RESET_ALL}', + f'\\1{Fore.GREEN}\\2{Fore.RED}\\3{Style.RESET_ALL}', line) print(line)