Actually, git uses cyan for line markers
This commit is contained in:
parent
411e247a80
commit
ab632d4e97
|
@ -22,7 +22,7 @@ for line in patch.split("\n"):
|
||||||
print(line)
|
print(line)
|
||||||
else:
|
else:
|
||||||
if line.startswith("@@"):
|
if line.startswith("@@"):
|
||||||
line = lines_re.sub(f"{Fore.BLUE}@@ \\1 @@{Style.RESET_ALL}",
|
line = lines_re.sub(f"{Fore.CYAN}@@ \\1 @@{Style.RESET_ALL}",
|
||||||
line)
|
line)
|
||||||
print(line)
|
print(line)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue