From 50a69cb093831d44672efbc6ad62327f05f88a11 Mon Sep 17 00:00:00 2001 From: newwares <45801973+waresnew@users.noreply.github.com> Date: Wed, 11 Mar 2026 16:37:48 -0400 Subject: [PATCH] Fix outdated check in paste confirmation --- kitty/window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/window.py b/kitty/window.py index b53f7ce66..76acc8547 100644 --- a/kitty/window.py +++ b/kitty/window.py @@ -2018,7 +2018,7 @@ class Window: def handle_dangerous_paste_confirmation(self, unsanitized: bytes, sanitized: bytes, choice: str) -> None: if choice == 's': self.paste_text(sanitized) - elif choice == 'p': + elif choice == 'a': self.paste_text(unsanitized) def handle_large_paste_confirmation(self, btext: bytes, confirmed: bool) -> None: