lazydocker/pkg/commands/streamer/streamer_windows.go
2022-05-14 12:44:00 +10:00

21 lines
425 B
Go

//go:build windows
// +build windows
package streamer
import (
"context"
)
func (s *Streamer) monitorTtySize(ctx context.Context, resize ResizeContainer, id string) {
/* TODO: mattn: Currently, this is not supported on Windows.
s.initTtySize(ctx, resize, id)
sigchan := make(chan os.Signal, 1)
signal.Notify(sigchan, syscall.SIGWINCH)
go func() {
for range sigchan {
s.resizeTty(ctx, resize, id)
}
}()
*/
}