Rename new chat command

This commit is contained in:
murashit 2026-05-25 17:11:54 +09:00
parent 646dcb2ce0
commit 35113a307f
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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;

View file

@ -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();