fix: centralize OSC 52 clipboard support for SSH sessions (#8974)

This commit is contained in:
b3nw
2026-01-16 16:57:17 -06:00
committed by GitHub
parent 632f20558a
commit 3d095e7fe7
4 changed files with 16 additions and 20 deletions

View File

@@ -141,11 +141,6 @@ export function DialogProvider(props: ParentProps) {
onMouseUp={async () => {
const text = renderer.getSelection()?.getSelectedText()
if (text && text.length > 0) {
const base64 = Buffer.from(text).toString("base64")
const osc52 = `\x1b]52;c;${base64}\x07`
const finalOsc52 = process.env["TMUX"] ? `\x1bPtmux;\x1b${osc52}\x1b\\` : osc52
/* @ts-expect-error */
renderer.writeOut(finalOsc52)
await Clipboard.copy(text)
.then(() => toast.show({ message: "Copied to clipboard", variant: "info" }))
.catch(toast.error)