Merge branch 'fix-paste' of https://github.com/waresnew/kitty
This commit is contained in:
commit
633d833907
1 changed files with 1 additions and 1 deletions
|
|
@ -2018,7 +2018,7 @@ def paste_with_actions(self, text: str, from_drop: bool = False, is_uri_list: bo
|
|||
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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue