mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-09 17:29:12 +00:00
parent
56053f4ff5
commit
d1f9a83d7a
2 changed files with 6 additions and 1 deletions
5
.changeset/cap-session-title-length.md
Normal file
5
.changeset/cap-session-title-length.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"@moonshot-ai/kimi-code": patch
|
||||
---
|
||||
|
||||
Shorten the session title written to the terminal window/tab from 80 to 32 characters so long first messages and pasted content no longer stretch the tab bar past readable width.
|
||||
|
|
@ -33,7 +33,7 @@ export const OSC11_RESPONSE_PREFIX_NO_ESC = "]11;rgb:";
|
|||
// Keep notification/title payloads bounded so terminal tabs and desktop
|
||||
// notifications stay readable.
|
||||
export const MAX_TERMINAL_NOTIFICATION_MESSAGE_LENGTH = 240;
|
||||
export const MAX_PROCESS_TITLE_LENGTH = 80;
|
||||
export const MAX_PROCESS_TITLE_LENGTH = 32;
|
||||
|
||||
// OSC 11 probing must be short because unsupported terminals do not reply.
|
||||
export const TERMINAL_THEME_DETECT_TIMEOUT_MS = 250;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue