mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
filter for mcp settings (#1460)
This commit is contained in:
parent
397e8bda1f
commit
d3d38fd227
1 changed files with 5 additions and 1 deletions
|
|
@ -683,7 +683,11 @@ export class ClineProvider implements vscode.WebviewViewProvider {
|
|||
break
|
||||
}
|
||||
case "openExtensionSettings": {
|
||||
await vscode.commands.executeCommand("workbench.action.openSettings", "@ext:saoudrizwan.claude-dev")
|
||||
const settingsFilter = message.text || ""
|
||||
await vscode.commands.executeCommand(
|
||||
"workbench.action.openSettings",
|
||||
`@ext:saoudrizwan.claude-dev ${settingsFilter}`.trim(), // trim whitespace if no settings filter
|
||||
)
|
||||
break
|
||||
}
|
||||
// Add more switch case statements here as more webview message commands
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue