mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
Rename new chat command
This commit is contained in:
parent
646dcb2ce0
commit
35113a307f
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue