diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2024-12-31 17:03:18 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2024-12-31 17:05:14 +0900 |
| commit | 9a2b7f559c88067c25a65a6a34c8e172bdf830dc (patch) | |
| tree | 56bf93324f9096fc6772e64063c5f9ebc803e90a /src/tui/light_windows.go | |
| parent | b8d2b0df7e1241c09eff21dbb63ebcc841efc824 (diff) | |
| download | fzf-9a2b7f559c88067c25a65a6a34c8e172bdf830dc.tar.gz | |
Add --list-border for additional border around the list section
Close #4148
Diffstat (limited to 'src/tui/light_windows.go')
| -rw-r--r-- | src/tui/light_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tui/light_windows.go b/src/tui/light_windows.go index e2a2bbfe..cf5126ab 100644 --- a/src/tui/light_windows.go +++ b/src/tui/light_windows.go @@ -39,7 +39,7 @@ func IsLightRendererSupported() bool { return canSetVt100 } -func (r *LightRenderer) defaultTheme() *ColorTheme { +func (r *LightRenderer) DefaultTheme() *ColorTheme { // the getenv check is borrowed from here: https://github.com/gdamore/tcell/commit/0c473b86d82f68226a142e96cc5a34c5a29b3690#diff-b008fcd5e6934bf31bc3d33bf49f47d8R178: if !IsLightRendererSupported() || os.Getenv("ConEmuPID") != "" || os.Getenv("TCELL_TRUECOLOR") == "disable" { return Default16 |
