mirror of
https://github.com/junegunn/fzf
synced 2026-07-22 16:53:18 +00:00
573df524fe
Close #3806 Known limitation: * --height cannot be used
10 lines
154 B
Go
10 lines
154 B
Go
//go:build !windows
|
|
|
|
package fzf
|
|
|
|
import "errors"
|
|
|
|
func runWinpty(_ []string, _ *Options) (int, error) {
|
|
return ExitError, errors.New("Not supported")
|
|
}
|