0c573b3dff
`TAGS=termbox make` (or `go build -tags termbox`)
12 lines
112 B
Go
12 lines
112 B
Go
// +build windows
|
|
|
|
package fzf
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func notifyOnResize(resizeChan chan<- os.Signal) {
|
|
// TODO
|
|
}
|