mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-23 23:56:09 +01:00
24 lines
938 B
TypeScript
24 lines
938 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as vscode from 'vscode';
|
|
import { Command } from '../commandManager';
|
|
import { MarkdownPreviewManager } from '../features/previewManager';
|
|
|
|
export class ShowSourceCommand implements Command {
|
|
public readonly id = 'markdown.showSource';
|
|
|
|
public constructor(
|
|
private readonly previewManager: MarkdownPreviewManager
|
|
) { }
|
|
|
|
public execute() {
|
|
if (this.previewManager.activePreviewResource) {
|
|
return vscode.workspace.openTextDocument(this.previewManager.activePreviewResource)
|
|
.then(document => vscode.window.showTextDocument(document));
|
|
}
|
|
return undefined;
|
|
}
|
|
} |