我的扩展中的贡献点之一是"explorer"
上下文菜单。我注意到,上下文菜单项的标题来自"commands"
. 有没有办法在上下文菜单下为同一命令指定不同的标题?
此外,有没有办法在"commands"
部分下声明命令但隐藏它并且仍然能够在上下文菜单下使用它?换句话说,阻止命令显示在命令选项板下,但仍可以将该命令用于其他贡献点。可能"title"
在菜单下有一个属性并"visible"
在命令下切换?
"menus": {
"explorer/context": [
{
"when": "!editorIsOpen || editorIsOpen",
"command": "extension.myCommand",
"title": "My Command"
}
]
},
"commands": [
{
"command" : "extension.myCommand",
"title" : "My Command with a long title",
"visible" : false
}
]