mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-12-23 03:19:01 +00:00
a4391aeedd
Close #3732
20 lines
219 B
Go
20 lines
219 B
Go
//go:build windows
|
|
|
|
package fzf
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func notifyOnResize(resizeChan chan<- os.Signal) {
|
|
// TODO
|
|
}
|
|
|
|
func notifyStop(p *os.Process) {
|
|
// NOOP
|
|
}
|
|
|
|
func notifyOnCont(resizeChan chan<- os.Signal) {
|
|
// NOOP
|
|
}
|