diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2015-03-22 17:43:28 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2015-03-22 17:43:28 +0900 |
| commit | f8c49effd4b285d42cb1740a289cb08008c08181 (patch) | |
| tree | 94ee5ed88202d6b2292cdd2219597d27c7bc9bd0 /src | |
| parent | 618706a5f5b56b24d08857af075877135baa1ea6 (diff) | |
| download | fzf-f8c49effd4b285d42cb1740a289cb08008c08181.tar.gz | |
Respect "boldness" of input string
Diffstat (limited to 'src')
| -rw-r--r-- | src/terminal.go | 2 |
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 |
