summaryrefslogtreecommitdiff
path: root/src/winpty.go
blob: adee3b0b74fcfb3f2fb82a64ccc16ee807175ba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//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")
}