Adopt new 'run' menu in editor title (#956)
* Adopt new 'run' menu in editor title Signed-off-by: Sheng Chen <sheche@microsoft.com>
This commit is contained in:
parent
bf4f4597f8
commit
f7dc675995
|
@ -103,9 +103,9 @@
|
|||
"dev": true
|
||||
},
|
||||
"@types/vscode": {
|
||||
"version": "1.49.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.49.0.tgz",
|
||||
"integrity": "sha512-wfNQmLmm1VdMBr6iuNdprWmC1YdrgZ9dQzadv+l2eSjJlElOdJw8OTm4RU4oGTBcfvG6RZI2jOcppkdSS18mZw==",
|
||||
"version": "1.54.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.54.0.tgz",
|
||||
"integrity": "sha512-sHHw9HG4bTrnKhLGgmEiOS88OLO/2RQytUN4COX9Djv81zc0FSZsSiYaVyjNidDzUSpXsySKBkZ31lk2/FbdCg==",
|
||||
"dev": true
|
||||
},
|
||||
"@webassemblyjs/ast": {
|
||||
|
|
14
package.json
14
package.json
|
@ -14,7 +14,7 @@
|
|||
"debugger"
|
||||
],
|
||||
"engines": {
|
||||
"vscode": "^1.49.0"
|
||||
"vscode": "^1.54.0"
|
||||
},
|
||||
"license": "SEE LICENSE IN LICENSE.txt",
|
||||
"repository": {
|
||||
|
@ -60,12 +60,12 @@
|
|||
},
|
||||
{
|
||||
"command": "java.debug.runJavaFile",
|
||||
"title": "Run",
|
||||
"title": "Run with Java Debugger",
|
||||
"icon": "$(play)"
|
||||
},
|
||||
{
|
||||
"command": "java.debug.debugJavaFile",
|
||||
"title": "Debug",
|
||||
"title": "Debug with Java Debugger",
|
||||
"icon": "$(debug-alt-small)"
|
||||
},
|
||||
{
|
||||
|
@ -136,16 +136,16 @@
|
|||
"group": "javadebug@2"
|
||||
}
|
||||
],
|
||||
"editor/title": [
|
||||
"editor/title/run": [
|
||||
{
|
||||
"command": "java.debug.runJavaFile",
|
||||
"when": "resourceExtname == .java",
|
||||
"group": "1_run@10"
|
||||
"group": "1_javadebug@10"
|
||||
},
|
||||
{
|
||||
"command": "java.debug.debugJavaFile",
|
||||
"when": "resourceExtname == .java",
|
||||
"group": "1_run@20"
|
||||
"group": "1_javadebug@20"
|
||||
}
|
||||
],
|
||||
"debug/toolBar": [
|
||||
|
@ -768,7 +768,7 @@
|
|||
"@types/mocha": "^5.2.7",
|
||||
"@types/node": "^14.14.10",
|
||||
"@types/uuid": "^8.3.0",
|
||||
"@types/vscode": "1.49.0",
|
||||
"@types/vscode": "1.54.0",
|
||||
"cross-env": "^5.2.0",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-tslint": "^8.1.4",
|
||||
|
|
Loading…
Reference in New Issue