mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-18 08:13:40 -05:00
14 lines
206 B
Go
14 lines
206 B
Go
//go:build !windows
|
|
|
|
package fzf
|
|
|
|
import "errors"
|
|
|
|
func needWinpty(_ *Options) bool {
|
|
return false
|
|
}
|
|
|
|
func runWinpty(_ []string, _ *Options) (int, error) {
|
|
return ExitError, errors.New("Not supported")
|
|
}
|