As a developer of a VS Code Extension, I'm using the exposed command plantuml.exportCurrent after having opened the plantuml file. I'd like to be able to call the command in this way: await vscode.commands.executeCommand("plantuml.exportCurrent", "png"); so that the extension is not asked but passed as parameter to the call. Is there already a way? Might you implement such a command?
As a developer of a VS Code Extension, I'm using the exposed command
plantuml.exportCurrent
after having opened the plantuml file. I'd like to be able to call the command in this way:await vscode.commands.executeCommand("plantuml.exportCurrent", "png");
so that the extension is not asked but passed as parameter to the call. Is there already a way? Might you implement such a command?