winch_other.go
1//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !aix && !zos
2// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!aix,!zos
3
4package uv
5
6import (
7 "context"
8 "fmt"
9
10 "github.com/charmbracelet/x/term"
11)
12
13func (*WinChReceiver) receiveEvents(context.Context, term.File, chan<- Event) error {
14 return fmt.Errorf("SIGWINCH not supported on this platform")
15}