summaryrefslogtreecommitdiff
path: root/src/proxy_unix.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-05-20 17:06:44 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-05-20 18:24:14 +0900
commit573df524fed1c493ce7d8ea893f06ab90f2ca18a (patch)
tree0bd1185bf827de5860aaf6a4944c2fd1c8ed69ef /src/proxy_unix.go
parentaee417c46a2f6d2aa87ea3fcc799fdc7bc830dfe (diff)
downloadfzf-573df524fed1c493ce7d8ea893f06ab90f2ca18a.tar.gz
Use winpty to launch fzf in Git bash (mintty)
Close #3806 Known limitation: * --height cannot be used
Diffstat (limited to 'src/proxy_unix.go')
-rw-r--r--src/proxy_unix.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/proxy_unix.go b/src/proxy_unix.go
new file mode 100644
index 00000000..189d0e56
--- /dev/null
+++ b/src/proxy_unix.go
@@ -0,0 +1,38 @@
+//go:build !windows
+
+package fzf
+
+import (
+ "io"
+ "os"
+
+ "golang.org/x/sys/unix"
+)
+
+func sh() (string, error) {
+ return "sh", nil
+}
+
+func mkfifo(path string, mode uint32) (string, error) {
+ return path, unix.Mkfifo(path, mode)
+}
+
+func withOutputPipe(output string, task func(io.ReadCloser)) error {
+ outputFile, err := os.OpenFile(output, os.O_RDONLY, 0)
+ if err != nil {
+ return err
+ }
+ task(outputFile)
+ outputFile.Close()
+ return nil
+}
+
+func withInputPipe(input string, task func(io.WriteCloser)) error {
+ inputFile, err := os.OpenFile(input, os.O_WRONLY, 0)
+ if err != nil {
+ return err
+ }
+ task(inputFile)
+ inputFile.Close()
+ return nil
+}