We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cac6e19 commit 6741f8dCopy full SHA for 6741f8d
src/commands/export.ts
@@ -352,7 +352,6 @@ export async function exportDocumentsToXMLFile(): Promise<void> {
352
quickPick.title = `Export the following ${documents.length > 1 ? `${documents.length} documents` : "document"}?`;
353
quickPick.placeholder = "Click any item to confirm, or 'Escape' to cancel";
354
quickPick.ignoreFocusOut = true;
355
- quickPick.onDidChangeSelection((e) => outputChannel.appendLine(JSON.stringify(e)));
356
quickPick.onDidAccept(() => {
357
resolve(true);
358
quickPick.hide();
0 commit comments