mirror of
https://github.com/junegunn/fzf.git
synced 2025-12-10 14:41:55 +08:00
Add --tmux option to replace fzf-tmux script
This commit is contained in:
9
src/tmux_unix.go
Normal file
9
src/tmux_unix.go
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user