diff options
| author | Craig Jellick <[email protected]> | 2026-01-19 22:38:26 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-19 23:38:26 -0600 |
| commit | 68d1755a9ed49b2bbf29964db295817349025563 (patch) | |
| tree | a9908a1ec8967fe27a91137cdfe6aa373b150522 | |
| parent | 419004992d57aacab45dd17f6c435fbc12f0b910 (diff) | |
| download | opencode-68d1755a9ed49b2bbf29964db295817349025563.tar.gz opencode-68d1755a9ed49b2bbf29964db295817349025563.zip | |
fix: add space toggle hint to tool selection prompt (#9535)
| -rw-r--r-- | packages/opencode/src/cli/cmd/agent.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/cli/cmd/agent.ts b/packages/opencode/src/cli/cmd/agent.ts index b57de0ae4..e5da9fdb3 100644 --- a/packages/opencode/src/cli/cmd/agent.ts +++ b/packages/opencode/src/cli/cmd/agent.ts @@ -134,7 +134,7 @@ const AgentCreateCommand = cmd({ selectedTools = cliTools ? cliTools.split(",").map((t) => t.trim()) : AVAILABLE_TOOLS } else { const result = await prompts.multiselect({ - message: "Select tools to enable", + message: "Select tools to enable (Space to toggle)", options: AVAILABLE_TOOLS.map((tool) => ({ label: tool, value: tool, |
