Skip to content

Commit

Permalink
add icons to editor for run and cancel query
Browse files Browse the repository at this point in the history
  • Loading branch information
abist committed Dec 19, 2019
1 parent 7cf33ed commit 3e069b1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
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.
15 changes: 12 additions & 3 deletions package.json
Expand Up @@ -185,7 +185,12 @@
{
"command": "mssql.runQuery",
"when": "editorLangId == sql",
"group": "navigation"
"group": "navigation@1"
},
{
"command": "mssql.cancelQuery",
"when": "editorLangId == sql",
"group": "navigation@2"
}
],
"editor/context": [
Expand Down Expand Up @@ -299,7 +304,7 @@
"category": "MS SQL",
"icon": {
"light": "images/start.svg",
"dark": "images/start.svg"
"dark": "images/start_inverse.svg"
}
},
{
Expand All @@ -310,7 +315,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 3e069b1

Please sign in to comment.