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

Function getUserInput

src/utils/vscode.ts:258–263  ·  view source on GitHub ↗
(prompt: string, value?: string)

Source from the content-addressed store, hash-verified

256export const showError = (error: string) => vscode.window.showErrorMessage(`${error}`);
257
258export const getUserInput = async (prompt: string, value?: string) => {
259 return await vscode.window.showInputBox({
260 prompt,
261 value,
262 });
263};
264
265export const getPickableOptions = async <T extends vscode.QuickPickItem>(
266 options: T[],

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected