From b00d46bc14bfe1b264c1a3104fbbc45cc0a37f8d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 1 Jun 2024 14:34:27 +0900 Subject: [PATCH] Fix --height on Windows --- src/tui/light_windows.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tui/light_windows.go b/src/tui/light_windows.go index 8c459d6..b7fc340 100644 --- a/src/tui/light_windows.go +++ b/src/tui/light_windows.go @@ -97,8 +97,7 @@ func openTtyIn() (*os.File, error) { } func openTtyOut() (*os.File, error) { - // not used - return nil, nil + return os.Stderr, nil } func (r *LightRenderer) setupTerminal() error {