fix(tui): synchronize shared session clients

This commit is contained in:
Xubin Ren
2026-08-17 20:56:10 +08:00
parent 2f78f7fbc5
commit 9e47d8106c
25 changed files with 803 additions and 101 deletions
+3
View File
@@ -0,0 +1,3 @@
export function optionArrowUp(platform: string = process.platform): string {
return platform === "darwin" ? "⌥↑" : "alt+↑"
}