Я работаю над расширением VS Code, которое автоматически настраивает несколько элементов.
Что мне не понятно после прочтения этой ссылки: Можно ли вызывать команду между расширениямив VSCode?
Это правильный способ вызова другой команды с тем же расширением в моем коде TypeScript.
Пример.нажмите CTRL + Shift + P, которая активирует и запускает мою основную пользовательскую команду, она выполняет соответствующую логику и т. д.
// The module 'vscode' contains the VS Code extensibility API
// Import the module and reference it with the alias vscode in your code below
import * as vscode from 'vscode';
import fs = require('fs');
import path = require('path');
const ini = require('ini');
export function activate(context: vscode.ExtensionContext) {
// install check name to match package.json
const myCommand = 'extension.myCommandName';
// command handler
const myCommandHandler = async (name?: 'MyCommand: Do Things') => {
// Check if a local path exists
function checkDirectorySync(directory: fs.PathLike) {
try {
fs.statSync(directory);
return true;
} catch (e) {
return false;
}
}
let isDirectoryValid = checkDirectorySync('C:\\Users\myusername\someFolder');
// now call another command to launch an input box
if (isDirectoryValid === false) {
var secondCommand = vscode.extensions.getExtension('extension.MyOtherCommand');
// is the ext loaded and ready?
if (secondCommand.isActive == false) {
secondCommand.activate().then(
function () {
console.log("Extension activated");
vscode.extensions.findCommand();
vscode.commands.executeCommand("extension.MyOtherCommand");
},
function () {
console.log("Extension activation failed");
}
);
} else {
vscode.commands.executeCommand("extension.MyOtherCommand");
}
}
};
// push directory check command to command registry
context.subscriptions.push(vscode.commands.registerCommand(myCommand, myCommandHandler));
}
// this method is called when your extension is deactivated
export function deactivate() { }
Просто пытаюсь понять с помощью этого простого примера, является ли это правильным подходом.Другой пост показался немного запутанным.
Любой быстрый совет, который очень ценят