mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-11 08:10:54 +00:00
12 lines
112 B
Go
12 lines
112 B
Go
|
// +build windows
|
||
|
|
||
|
package fzf
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func notifyOnResize(resizeChan chan<- os.Signal) {
|
||
|
// TODO
|
||
|
}
|