Prompt User for Input
Regular
- see this
Prompt User for Input using Free Text
- see this
let out = await VSCodeUtils.showInputBox({
prompt: "Path to your new vault (relative to your workspace root)",
placeHolder: localVaultPathPlaceholder,
});
if (PickerUtilsV2.isStringInputEmpty(out)) return;
Backlinks