Files
junegunn--fzf/src/winpty.go
T
Junegunn Choi 573df524fe Use winpty to launch fzf in Git bash (mintty)
Close #3806

Known limitation:
* --height cannot be used
2024-05-20 18:24:14 +09:00

10 lines
154 B
Go

//go:build !windows
package fzf
import "errors"
func runWinpty(_ []string, _ *Options) (int, error) {
return ExitError, errors.New("Not supported")
}