mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-24 21:57:36 +00:00
0eee95af57
Fix #3802 This fixes `xterm -e fzf` hangs on CTRL-Z * Replace SIGSTOP with SIGTSTP * Do not rely on SIGCONT
16 lines
158 B
Go
16 lines
158 B
Go
//go:build windows
|
|
|
|
package fzf
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func notifyOnResize(resizeChan chan<- os.Signal) {
|
|
// TODO
|
|
}
|
|
|
|
func notifyStop(p *os.Process) {
|
|
// NOOP
|
|
}
|