Created
February 20, 2018 20:39
-
-
Save ramsaylanier/14f1ce225cdb0091bf5778c3dc4f9cbb 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