-
Notifications
You must be signed in to change notification settings - Fork 34.9k
Description
Now in the vscode sdk, there are already two APIs about dialog, but unfortunately, it is combined with the file system.
showOpenDialog
showSaveDialog
We cannot open a Dialog for the time being and use custom content. eg: When we want to delete a file, we want to appear a Dialog to let the user confirm whether to delete it. In this case, the reminder in the lower right corner (use showInformationMessage) may not be very noticeable.
Is it possible to expose a new api, which the possible name is vscode.window.showDialog
,Maybe we can fully refer to the parameter of dialogService.show
for showDialog
.
I tried to search the list of issue, but I didn't find anything. Don't you have such a need?
If there is no plan to support it, I would like to know how does the official team consider this issue(that there is no support customized dialog api for extension)?