diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2016-11-26 00:36:38 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2016-11-26 00:36:38 +0900 |
| commit | de1c6b87272581eec4bfd39771e573c2bb772b60 (patch) | |
| tree | ec5eedb97d634bd2cdb11fb918b7377df7d64fb1 /src/tui/tcell.go | |
| parent | 6f17f412bad6447520dd3487aa5235887cb1fd19 (diff) | |
| download | fzf-de1c6b87272581eec4bfd39771e573c2bb772b60.tar.gz | |
[tcell] 24-bit color support
TAGS=tcell make install
printf "\x1b[38;2;100;200;250mTRUECOLOR\x1b[m\n" |
TERM=xterm-truecolor fzf --ansi
Diffstat (limited to 'src/tui/tcell.go')
| -rw-r--r-- | src/tui/tcell.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tui/tcell.go b/src/tui/tcell.go index 3fe1161d..4a8f502d 100644 --- a/src/tui/tcell.go +++ b/src/tui/tcell.go @@ -11,8 +11,9 @@ import ( "runtime" - "github.com/gdamore/tcell" - "github.com/gdamore/tcell/encoding" + // https://github.com/gdamore/tcell/pull/135 + "github.com/junegunn/tcell" + "github.com/junegunn/tcell/encoding" "github.com/junegunn/go-runewidth" ) |
