Skip to content

Commit

Permalink
Prefer LightRenderer on Windows if it's available
Browse files Browse the repository at this point in the history
Fix #1766
  • Loading branch information
junegunn committed Oct 30, 2020
1 parent 1c68f81 commit 7915e36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
6 changes: 3 additions & 3 deletions src/terminal.go
Original file line number Diff line number Diff line change
Expand Up @@ -408,11 +408,11 @@ func NewTerminal(opts *Options, eventBox *util.EventBox) *Terminal {
var renderer tui.Renderer
fullscreen := opts.Height.size == 0 || opts.Height.percent && opts.Height.size == 100
if fullscreen {
if tui.HasFullscreenRenderer() {
renderer = tui.NewFullscreenRenderer(opts.Theme, opts.Black, opts.Mouse)
} else {
if tui.IsLightRendererSupported() {
renderer = tui.NewLightRenderer(opts.Theme, opts.Black, opts.Mouse, opts.Tabstop, opts.ClearOnExit,
true, func(h int) int { return h })
} else {
renderer = tui.NewFullscreenRenderer(opts.Theme, opts.Black, opts.Mouse)
}
} else {
maxHeightFunc := func(termHeight int) int {
Expand Down
4 changes: 0 additions & 4 deletions src/tui/dummy.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ package tui

type Attr int

func HasFullscreenRenderer() bool {
return false
}

func (a Attr) Merge(b Attr) Attr {
return a | b
}
Expand Down
4 changes: 0 additions & 4 deletions src/tui/tcell.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ 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()))
Expand Down

0 comments on commit 7915e36

Please sign in to comment.