菜单
扩展是通过配置扩展点
来注册的,一般要关联一个命令
。扩展方式是在package.json中contributes
节点下增加menus
扩展点。相关代码如下:
"contributes": {
"menus": {
"editor/context": [
{
"command": "extension.helloWorld",
"group": "z_commands",
"when": "editorTextFocus"
},
{
"group": "z_commands"
}
]
}
}
菜单
扩展点详细的说明请参考这里menus