use the vscode.open command, remove dependency on the open module

This commit is contained in:
Erich Gamma 2018-04-28 16:29:47 +02:00
Родитель 141aee1856
Коммит 638807904d
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -7,7 +7,6 @@ import {
Proposed, CancellationToken, WorkspaceMiddleware
} from 'vscode-languageclient';
import { exec } from 'child_process';
import * as open from 'open';
interface AllFixesParams {
readonly textDocument: TextDocumentIdentifier;
@ -351,7 +350,7 @@ export function activate(context: ExtensionContext) {
if (!ruleId) {
return;
}
open(tslintDocBaseURL+'/'+ruleId);
commands.executeCommand('vscode.open', Uri.parse(tslintDocBaseURL+'/'+ruleId));
}
function fixAllProblems() {