mirror of
https://github.com/junegunn/fzf
synced 2024-11-10 13:10:44 +00:00
20 lines
218 B
Go
20 lines
218 B
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
|
|
}
|