vscode上下文菜单项标题

时间:2016-08-12 15:23:08

标签: typescript visual-studio-code vscode-extensions

我的扩展程序中的一个贡献点是"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
     }
 ]

0 个答案:

没有答案