62 lines
3.0 KiB
JavaScript
62 lines
3.0 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.deactivate = exports.activate = void 0;
|
|
// The module 'vscode' contains the VS Code extensibility API
|
|
// Import the module and reference it with the alias vscode in your code below
|
|
const vscode = __importStar(require("vscode"));
|
|
// 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 "eval" 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
|
|
let OpenProject = vscode.commands.registerCommand('eval.OpenProject', () => {
|
|
// The code you place here will be executed every time your command is executed
|
|
// Display a message box to the user
|
|
// vscode.window.showInformationMessage(String(vscode.window.state.focused));
|
|
if (vscode.workspace.workspaceFolders) {
|
|
console.log(vscode.workspace.workspaceFolders[0].name);
|
|
}
|
|
else {
|
|
console.log(false);
|
|
}
|
|
});
|
|
let GetColorTheme = vscode.commands.registerCommand('eval.GetColorTheme', () => {
|
|
console.log(vscode.window.activeColorTheme.kind == 2);
|
|
});
|
|
let GetBreakPoint = vscode.commands.registerCommand('eval.GetBreakPoint', () => {
|
|
console.log(vscode.debug.breakpoints.length == 1);
|
|
});
|
|
context.subscriptions.push(OpenProject, GetColorTheme, GetBreakPoint);
|
|
}
|
|
exports.activate = activate;
|
|
// This method is called when your extension is deactivated
|
|
function deactivate() { }
|
|
exports.deactivate = deactivate;
|
|
//# sourceMappingURL=extension.js.map
|