Add --tmux option to replace fzf-tmux script

This commit is contained in:
Junegunn Choi
2024-05-10 01:40:56 +09:00
parent 01e7668915
commit 83b6033906
12 changed files with 313 additions and 9 deletions

9
src/tmux_unix.go Normal file
View File

@@ -0,0 +1,9 @@
//go:build !windows
package fzf
import "golang.org/x/sys/unix"
func mkfifo(path string, mode uint32) error {
return unix.Mkfifo(path, mode)
}