mirror of
https://github.com/junegunn/fzf.git
synced 2025-08-02 05:02:04 -07:00
14 lines
173 B
Go
14 lines
173 B
Go
// +build !windows
|
|
|
|
package fzf
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
)
|
|
|
|
func notifyOnResize(resizeChan chan<- os.Signal) {
|
|
signal.Notify(resizeChan, syscall.SIGWINCH)
|
|
}
|