Add input parameter to setVibeForTool function.
Allows tool input to be passed to vibe setter for future context-aware customization. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
42dda2013b
commit
6e10d93d0d
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ export function setVibeForPrompt(ctx: ExtensionContext, prompt: string): void {
|
|||
ctx.ui.setWorkingMessage(`${emoji()} Thinking...`);
|
||||
}
|
||||
|
||||
export function setVibeForTool(ctx: ExtensionContext, toolName: string): void {
|
||||
export function setVibeForTool(ctx: ExtensionContext, toolName: string, _input?: unknown): void {
|
||||
if (!ctx.hasUI) return;
|
||||
switch (toolName) {
|
||||
case "bash":
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue