m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 00:03:39 -05:00

Use MSYS=enable_pcon instead of winpty on mintty 3.4.5 or later

This commit is contained in:
Junegunn Choi
2024-05-23 18:41:13 +09:00
parent bfe2bf4dce
commit d4216b0dcc
5 changed files with 118 additions and 5 deletions

View File

@@ -4,6 +4,10 @@ package fzf
import "errors"
func needWinpty(_ *Options) bool {
return false
}
func runWinpty(_ []string, _ *Options) (int, error) {
return ExitError, errors.New("Not supported")
}