We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d11ff2c commit bf00a92Copy full SHA for bf00a92
packages/opencode/src/cli/cmd/tui/util/clipboard.ts
@@ -148,8 +148,9 @@ export namespace Clipboard {
148
export async function copy(text: string): Promise<void> {
149
const renderer = rendererRef.current
150
if (renderer) {
151
- const copied = renderer.copyToClipboardOSC52(text)
152
- if (copied) return
+ // Try OSC52 but don't early return - always fall back to native method
+ // OSC52 may report success but not actually work in all terminals
153
+ renderer.copyToClipboardOSC52(text)
154
}
155
await getCopyMethod()(text)
156
0 commit comments