ITADN

Fix SetTitle escape sequence to use correct OSC format

#248Pull RequestApsu 创建于 2025-06-20已合并
A
Apsucommented
### Problem The `SetTitle` method uses an incorrect escape sequence that causes the title text to appear in the terminal output instead of setting the window title. ### Root Cause - Current: `\033[2;` (CSI - Control Sequence Introducer) - Correct: `\033]2;` (OSC - Operating System Command) ### Fix Changed `[` to `]` in the escape sequence to use the proper OSC format for setting terminal window titles. ### Testing Verified the fix resolves text bleeding in multiple terminal emulators.
合并状态:已合并 合并于 2025-06-20 关闭于 2025-06-20 0 条评论