mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-16 13:34:48 +02:00
Fix requesting data from clipboard via OSC 52 getting it from primary selection instead
Fixes #7213
This commit is contained in:
@@ -406,7 +406,7 @@ class ClipboardRequestManager:
|
||||
def parse_osc_52(self, data: memoryview, is_partial: bool = False) -> None:
|
||||
idx = find_in_memoryview(data, ord(b';'))
|
||||
if idx > -1:
|
||||
where = str(data[idx:], "utf-8", 'replace')
|
||||
where = str(data[:idx], "utf-8", 'replace')
|
||||
data = data[idx+1:]
|
||||
else:
|
||||
where = str(data, "utf-8", 'replace')
|
||||
|
||||
Reference in New Issue
Block a user