summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-03-22 17:43:28 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-03-22 17:43:28 +0900
commitf8c49effd4b285d42cb1740a289cb08008c08181 (patch)
tree94ee5ed88202d6b2292cdd2219597d27c7bc9bd0 /src
parent618706a5f5b56b24d08857af075877135baa1ea6 (diff)
downloadfzf-f8c49effd4b285d42cb1740a289cb08008c08181.tar.gz
Respect "boldness" of input string
Diffstat (limited to 'src')
-rw-r--r--src/terminal.go2
1 files changed, 1 insertions, 1 deletions
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