From e9e596136dd52fe93a288ade5dd84a3155290129 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Feb 2026 03:25:41 +0000 Subject: [PATCH 1/2] Initial plan From a4587931a3371ec4ea6bbd9f5f70181a526ff654 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Feb 2026 03:27:36 +0000 Subject: [PATCH 2/2] Fix ineffectual assignment in termio/interruptible_test.go line 86 Co-authored-by: aretw0 <14055273+aretw0@users.noreply.github.com> --- termio/interruptible_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termio/interruptible_test.go b/termio/interruptible_test.go index 85e610a..899d5f8 100644 --- a/termio/interruptible_test.go +++ b/termio/interruptible_test.go @@ -83,7 +83,7 @@ func TestInterruptibleReader_Read_Slow(t *testing.T) { } // SUBSEQUENT read should return ErrInterrupted - n, err = r.Read(buf) + _, err = r.Read(buf) if !errors.Is(err, ErrInterrupted) { t.Errorf("Expected ErrInterrupted on second read, got %v", err) }