We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cef9cd commit 47f7afbCopy full SHA for 47f7afb
ChangeLog
@@ -1,3 +1,6 @@
1
+1.5.1
2
+ Make --highlight and --no-bold play nice.
3
+
4
1.5.0
5
Pass arguments through to icdiff when using git-icdiff.
6
icdiff
@@ -18,7 +18,7 @@ import re
18
import filecmp
19
import unicodedata
20
21
-__version__ = "1.5.0"
+__version__ = "1.5.1"
22
23
color_codes = {
24
"red": '\033[0;31m',
@@ -325,7 +325,7 @@ class ConsoleDiff(object):
325
326
def colorize(self, s):
327
def background(color):
328
- return color.replace("\033[1;", "\033[7;")
+ return color.replace("\033[1;", "\033[7;").replace("\033[0;", "\033[7;")
329
330
if self.no_bold:
331
C_ADD = color_codes["green"]
0 commit comments