diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2024-06-01 14:34:27 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2024-06-01 14:36:41 +0900 |
| commit | b00d46bc14bfe1b264c1a3104fbbc45cc0a37f8d (patch) | |
| tree | a771ea9863a44c7af0f186b51ec10deed1e5abef /src/tui/light_windows.go | |
| parent | 555b0d235bd29ace645c263ef2fdb744717f8885 (diff) | |
| download | fzf-b00d46bc14bfe1b264c1a3104fbbc45cc0a37f8d.tar.gz | |
Fix --height on Windows
Diffstat (limited to 'src/tui/light_windows.go')
| -rw-r--r-- | src/tui/light_windows.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tui/light_windows.go b/src/tui/light_windows.go index 8c459d66..b7fc3402 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 { |
