key_other.go 204 B

12345678910111213
  1. //go:build !windows
  2. // +build !windows
  3. package tea
  4. import (
  5. "context"
  6. "io"
  7. )
  8. func readInputs(ctx context.Context, msgs chan<- Msg, input io.Reader) error {
  9. return readAnsiInputs(ctx, msgs, input)
  10. }