OPEN TO WORK

Available for new opportunities! Let's build something amazing together.

Creating a Submenu in VS Code: A Step-by-Step Guide

Development VSCode Extensions
post

This post is over a year old, some of this information may be out of date.

While creating a session about Visual Studio Code extension development, I discovered that creating a submenu in the context menus is possible. These submenus are a great way to make the context menus less cluttered and easier to use.

Show image Submenu in a context menu
Submenu in a context menu

When trying it out, I could not make it work easily as the docs were unclear. So I decided to write this article to help others who want to create a submenu in their Visual Studio Code context menus.

Creating the submenu

Creating a submenu starts with the package.json file (extension manifest) at the root of your extension.

Add a submenu property to the contributes section:

{
...
"contributes": {
"submenus": [
{
"id": "sparkup.submenu",
"label": "Sparkup"
}
]
}
}

Once you have added the submenu, you can now register the submenu in the context menu:

{
...
"contributes": {
"menus": {
"editor/context": [
{
"submenu": "sparkup.submenu",
"group": "sparkup"
}
]
}
}
}

The only thing left to do is to add the commands to the submenu:

{
...
"contributes": {
"menus": [
"sparkup.submenu": [
{
"command": "vscode-sparkup.biasFreeLanguage"
}
]
]
}
}

The whole example looks as follows:

{
...
"contributes": {
"submenus": [
{
"id": "sparkup.submenu",
"label": "Sparkup"
}
],
"menus": [
"editor/context": [
{
"submenu": "sparkup.submenu",
"group": "sparkup"
}
],
"sparkup.submenu": [
{
"command": "vscode-sparkup.biasFreeLanguage"
}
]
]
}
}

I hope this article helped you to create a submenu in your Visual Studio Code context menus. If you have any questions, feel free to leave a comment below.

Related articles

Report issues or make changes on GitHub

Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.

Comments

Elio Struyf

Solutions Architect & Developer Expert

Loading...

Let's build together

Manage content in VS Code

Present from VS Code