From 4ca38feee3a24883d2f846a82d98b953b4c9ebe4 Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Wed, 29 Jul 2020 10:24:32 +0300 Subject: [PATCH] git-cblame: Fix not-committed-yet messages highlighting --- git-cblame | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-cblame b/git-cblame index dd12df6..b837a20 100755 --- a/git-cblame +++ b/git-cblame @@ -11,7 +11,7 @@ clr() { } paste -d ' ' \ - <(git blame "$1" | cut -d ')' -f 1 | sed 's/(//' | clr "0\{9\}.*Not Committed Yet.*") \ + <(git blame "$1" | cut -d ')' -f 1 | sed 's/(//' | clr "0\+.*Not Committed Yet.*") \ <(vcat "$1") \ | less -R