From f8c49effd4b285d42cb1740a289cb08008c08181 Mon Sep 17 00:00:00 2001
From: Junegunn Choi <junegunn.c@gmail.com>
Date: Sun, 22 Mar 2015 17:43:28 +0900
Subject: [PATCH] Respect "boldness" of input string

---
 src/terminal.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/terminal.go b/src/terminal.go
index bf64ec7a..5570f8d1 100644
--- a/src/terminal.go
+++ b/src/terminal.go
@@ -353,7 +353,7 @@ func (*Terminal) printHighlighted(item *Item, bold bool, col1 int, col2 int, cur
 
 		if b < e {
 			substr, prefixWidth = processTabs(text[b:e], prefixWidth)
-			C.CPrint(offset.color, bold, substr)
+			C.CPrint(offset.color, offset.bold, substr)
 		}
 
 		index = e
-- 
GitLab