Skip to content

Commit

Permalink
Merge 6077a07 into 50568f0
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya Bist committed Dec 19, 2019
2 parents 50568f0 + 6077a07 commit fa76e5d
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 2 deletions.
1 change: 1 addition & 0 deletions images/start.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/start_inverse.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/stop.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/stop_inverse.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 22 additions & 2 deletions package.json
Expand Up @@ -180,6 +180,18 @@
}
],
"menus": {
"editor/title": [
{
"command": "mssql.runQuery",
"when": "editorLangId == sql",
"group": "navigation@1"
},
{
"command": "mssql.cancelQuery",
"when": "editorLangId == sql",
"group": "navigation@2"
}
],
"editor/context": [
{
"command": "mssql.runQuery",
Expand Down Expand Up @@ -288,7 +300,11 @@
{
"command": "mssql.runQuery",
"title": "%mssql.runQuery%",
"category": "MS SQL"
"category": "MS SQL",
"icon": {
"light": "images/start.svg",
"dark": "images/start_inverse.svg"
}
},
{
"command": "mssql.runCurrentStatement",
Expand All @@ -298,7 +314,11 @@
{
"command": "mssql.cancelQuery",
"title": "%mssql.cancelQuery%",
"category": "MS SQL"
"category": "MS SQL",
"icon": {
"light": "images/stop.svg",
"dark": "images/stop_inverse.svg"
}
},
{
"command": "mssql.connect",
Expand Down

0 comments on commit fa76e5d

Please sign in to comment.