module.exports.helloWorld=function(context){varvscode=context.require('vscode');vscode.window.showInformationMessage("hello world!");} 这段代码的作用是导出一个名字为helloworld的自定义指令。 现在我们看看函数的实现,可以注意到函数有一个context参数,插件会在运行时把当前上下文对象注入到该参数。context暴露了...