Skip to content

Commit 7dba513

Browse files
committed
feat: update PLAN_MODE_STATUS_MESSAGE
1 parent 29adf6a commit 7dba513

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const PROJECT_CODE_HASH_LENGTH = 16;
6666
const BACKGROUND_FAILURE_LOG_TAIL_CHARS = 4000;
6767
const DEFAULT_COMPACT_PROMPT_TOKEN_THRESHOLD = 128 * 1024;
6868
const DEEPSEEK_V4_COMPACT_PROMPT_TOKEN_THRESHOLD = 512 * 1024;
69-
const PLAN_MODE_STATUS_MESSAGE = "Set Plan Mode on. Awaiting <proposed_plan>.";
69+
const PLAN_MODE_STATUS_MESSAGE = "/plan\n └ Set Plan Mode on. Awaiting <proposed_plan>.";
7070

7171
type ChatCompletionDebugOptions = {
7272
enabled?: boolean;

src/tests/session.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const originalConsoleWarn = console.warn;
1313
const originalHome = process.env.HOME;
1414
const originalUserProfile = process.env.USERPROFILE;
1515
const tempDirs: string[] = [];
16-
const PLAN_MODE_STATUS_MESSAGE = "Set Plan Mode on. Awaiting <proposed_plan>.";
16+
const PLAN_MODE_STATUS_MESSAGE = "/plan\n └ Set Plan Mode on. Awaiting <proposed_plan>.";
1717

1818
/** Set homedir in a cross-platform way (HOME on Unix, USERPROFILE on Windows). */
1919
function setHomeDir(dir: string): void {

0 commit comments

Comments
 (0)