是否可以在编辑器的右侧添加新的菜单栏 - VSCode Extension?

时间:2018-04-24 05:52:47

标签: visual-studio-code vscode-extensions

在编辑器的右上角,有没有办法添加新的菜单栏项并在其上附加命令?

afaik我只能使用"menus" / "editor/title"向现有菜单项添加条目。

enter image description here

1 个答案:

答案 0 :(得分:1)

您已链接到的

"editor/title"应该是正确的位置。以下是内置Markdown扩展程序的示例,.md文件中的uses it to add the "Open Preview To The Side" button

"contributes": {
    "menus": {
        "editor/title": [
            {
                "command": "markdown.showPreviewToSide",
                "when": "editorLangId == markdown",
                "alt": "markdown.showPreview",
                "group": "navigation"
            }
        ]
    }
}