2020-06-17 12:27:16 -04:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package tea
|
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
|
|
|
// listenForResize is not available on windows because windows does not
|
|
|
|
// implement syscall.SIGWINCH.
|
2021-01-17 09:55:10 -05:00
|
|
|
func listenForResize(_ *os.File, _ chan Msg, _ chan error) {}
|