Skip to content

Commit eaa0826

Browse files
committed
chore: generate
1 parent f6055ad commit eaa0826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/opencode/src/cli/cmd/tui/util/clipboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export namespace Clipboard {
111111
console.log("clipboard: using powershell")
112112
return async (text: string) => {
113113
// need to escape backticks because powershell uses them as escape code
114-
const escaped = text.replace(/"/g, '""').replace(/`/g, '``')
114+
const escaped = text.replace(/"/g, '""').replace(/`/g, "``")
115115
await $`powershell -NonInteractive -NoProfile -Command "Set-Clipboard -Value \"${escaped}\""`.nothrow().quiet()
116116
}
117117
}

0 commit comments

Comments
 (0)