summaryrefslogtreecommitdiffstats
path: root/src/terminal_windows.go
blob: 9de7ae45c7d5e3f91d563f571bd6402115e90660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// +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
}