m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 07:43:39 -05:00

Revert "Prefer LightRenderer on Windows if it's available"

This reverts commit 7915e365b3
due to https://github.com/junegunn/fzf.vim/issues/1152#issuecomment-719696495.
This commit is contained in:
Junegunn Choi
2020-10-31 02:53:10 +09:00
parent 7915e365b3
commit f8aaeef218
3 changed files with 11 additions and 3 deletions

View File

@@ -15,6 +15,10 @@ import (
"github.com/mattn/go-runewidth"
)
func HasFullscreenRenderer() bool {
return true
}
func (p ColorPair) style() tcell.Style {
style := tcell.StyleDefault
return style.Foreground(tcell.Color(p.Fg())).Background(tcell.Color(p.Bg()))