MCPcopy Create free account
hub / github.com/code-forge-io/Remix-Forge / getMultiplePickableOptions

Function getMultiplePickableOptions

src/utils/vscode.ts:270–273  ·  view source on GitHub ↗
(
  options: T[],
  config?: vscode.QuickPickOptions
)

Source from the content-addressed store, hash-verified

268) => await vscode.window.showQuickPick<T>(options, config);
269
270export const getMultiplePickableOptions = async <T extends vscode.QuickPickItem>(
271 options: T[],
272 config?: vscode.QuickPickOptions
273) => await vscode.window.showQuickPick<T>(options, { ...config, canPickMany: true });
274
275export const sanitizePath = (path: string) => (path.startsWith("/") ? path : `/${path}`);
276

Callers 1

generateShadcnUIFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected