提交 1d9d49e2 编写于 作者: C Christof Marti

Test...

上级 0a6033c6
...@@ -22,6 +22,12 @@ import { updateImageSize } from './updateImageSize'; ...@@ -22,6 +22,12 @@ import { updateImageSize } from './updateImageSize';
import { reflectCssValue } from './reflectCssValue'; import { reflectCssValue } from './reflectCssValue';
export function activate(context: vscode.ExtensionContext) { export function activate(context: vscode.ExtensionContext) {
const https = require('https');
https.get('https://localhost:3000', (res: any) => console.log('https://localhost:3000:', res.statusCode))
.on('error', console.error);
https.get('https://ya.ru', (res: any) => console.log('https://ya.ru:', res.statusCode))
.on('error', console.error);
registerCompletionProviders(context); registerCompletionProviders(context);
context.subscriptions.push(vscode.commands.registerCommand('editor.emmet.action.wrapWithAbbreviation', (args) => { context.subscriptions.push(vscode.commands.registerCommand('editor.emmet.action.wrapWithAbbreviation', (args) => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册