Skip to content

Commit

Permalink
vega commands mapping patch
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomFractals committed Feb 12, 2019
1 parent 4edfc6b commit ed642d7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-vega-viewer",
"displayName": "Vega Viewer",
"description": "Vega Viewer",
"version": "2.0.0",
"version": "2.1.0",
"publisher": "RandomFractalsInc",
"author": "Taras Novak",
"contributors": [
Expand Down Expand Up @@ -40,17 +40,17 @@
"commands": [
{
"command": "vega.create",
"title": "Create Vega $(graph)",
"title": "Create Vega 📊",
"category": "Vega"
},
{
"command": "vega.preview",
"title": "Preview $(graph)",
"title": "Preview 📊",
"category": "Vega"
},
{
"command": "vega.examples",
"title": "Examples $(graph)",
"title": "Examples 📊",
"category": "Vega"
}
],
Expand Down Expand Up @@ -110,23 +110,23 @@
"menus": {
"explorer/context": [
{
"when": "resourceLangId == json || resourceLangId == vega || resourceLangId == vg || resourceLangId == vl",
"when": "resourceLangId == json",
"command": "vega.preview",
"group": "navigation"
"group": "Vega"
}
],
"editor/title": [
{
"when": "resourceLangId == json || resourceLangId == vega || resourceLangId == vg || resourceLangId == vl",
"when": "resourceLangId == json",
"command": "vega.preview",
"group": "navigation"
"group": "Vega"
}
],
"editor/title/context": [
{
"when": "resourceLangId == json || resourceLangId == vega || resourceLangId == vg || resourceLangId == vl",
"when": "resourceLangId == json",
"command": "vega.preview",
"group": "navigation"
"group": "Vega"
}
]
}
Expand Down

0 comments on commit ed642d7

Please sign in to comment.