From 35113a307f002c18aca0bc30f6dde9963e11ee3b Mon Sep 17 00:00:00 2001 From: murashit Date: Mon, 25 May 2026 17:11:54 +0900 Subject: [PATCH] Rename new chat command --- README.md | 2 +- src/features/chat/ui/composer.ts | 2 +- src/main.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index da48957d..a997ce4f 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Each open panel has its own Codex App Server connection, active thread, pending Open the command palette and run **Codex Panel: Open panel**, or select the ribbon icon. If Obsidian cannot find `codex`, set **Settings → Codex Panel → Codex executable** to an absolute path, such as `/opt/homebrew/bin/codex`. -Use **Codex Panel: New chat** to start a fresh thread. Use **Codex Panel: Open new panel** when you want multiple Codex threads side by side. Use **Codex Panel: Open threads view** to open a left-sidebar list of non-archived threads; selecting a row focuses an already open panel for that thread or resumes it in an available panel. +Use **Codex Panel: Start new chat** to start a fresh thread in the current panel. Use **Codex Panel: Open new panel** when you want multiple Codex threads side by side. Use **Codex Panel: Open threads view** to open a left-sidebar list of non-archived threads; selecting a row focuses an already open panel for that thread or resumes it in an available panel. ## Supported Codex workflows diff --git a/src/features/chat/ui/composer.ts b/src/features/chat/ui/composer.ts index 36019d4a..609357e6 100644 --- a/src/features/chat/ui/composer.ts +++ b/src/features/chat/ui/composer.ts @@ -51,7 +51,7 @@ export function renderComposerShell( const newThreadButton = createIconButton( actionsEl, "message-square-plus", - "New chat", + "Start new chat", "codex-panel-ui__icon-button codex-panel__composer-action codex-panel__new-chat", ); newThreadButton.disabled = busy; diff --git a/src/main.ts b/src/main.ts index 6288420a..e54935f6 100644 --- a/src/main.ts +++ b/src/main.ts @@ -71,7 +71,7 @@ export default class CodexPanelPlugin extends Plugin { this.addCommand({ id: "new-chat", - name: "New chat", + name: "Start new chat", callback: async () => { const view = await this.activateView(); await view.startNewThread();