1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/g8up-vsc-ext-comb-vue

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
В этом репозитории не указан файл с открытой лицензией (LICENSE). При использовании обратитесь к конкретному описанию проекта и его зависимостям в коде.
Клонировать/Скачать
extension.js 1.5 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
g8up Отправлено 31.05.2018 21:30 b680230
// The module 'vscode' contains the VS Code extensibility API
// Import the module and reference it with the alias vscode in your code below
var vscode = require('vscode');
var combind = require('./combind.js');
var path = require('path');
// this method is called when your extension is activated
// your extension is activated the very first time the command is executed
function activate(context) {
// Use the console to output diagnostic information (console.log) and errors (console.error)
// This line of code will only be executed once when your extension is activated
console.log('Congratulations, your extension "comb-vue" is now active!');
// The command has been defined in the package.json file
// Now provide the implementation of the command with registerCommand
// The commandId parameter must match the command field in package.json
var combindCmd = vscode.commands.registerCommand('extension.combind', function(){
var editor = vscode.window.activeTextEditor;
var filePath = path.dirname( editor.document.fileName);
console.log('path', filePath)
var configration = vscode.workspace.getConfiguration('comb-vue')
var order = configration.get("order")
var supportedExts = configration.get('ext')
combind.run(filePath, order, supportedExts );
})
context.subscriptions.push(combindCmd);
}
exports.activate = activate;
// this method is called when your extension is deactivated
function deactivate() {
}
exports.deactivate = deactivate;

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/g8up-vsc-ext-comb-vue.git
git@api.gitlife.ru:oschina-mirror/g8up-vsc-ext-comb-vue.git
oschina-mirror
g8up-vsc-ext-comb-vue
g8up-vsc-ext-comb-vue
master