Created
February 20, 2018 20:40
-
-
Save ramsaylanier/245334cfb6a2ee361e2f1b7b8ff9c03a to your computer and use it in GitHub Desktop.
VS Code contributes example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"contributes": { | |
"commands": [ | |
{ | |
"command": "extension.createGist", | |
"title": "Create Gist" | |
} | |
], | |
"menus": { | |
"editor/context": [ | |
{ | |
"command": "extension.createGist", | |
"group": "YourGroup@1" | |
} | |
] | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment