提交 3b869657 编写于 作者: M Matt Bierner

Make markdown show preview command multiselect aware

Fixes #42583
上级 5394c433
......@@ -83,8 +83,10 @@ export class ShowPreviewCommand implements Command {
private readonly telemetryReporter: TelemetryReporter
) { }
public execute(uri?: vscode.Uri) {
showPreview(this.cspArbiter, this.telemetryReporter, uri, false);
public execute(mainUri?: vscode.Uri, allUris?: vscode.Uri[]) {
for (const uri of (allUris || [mainUri])) {
showPreview(this.cspArbiter, this.telemetryReporter, uri, false);
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册