1.3.5, 1.3.6, 1.3.7

This commit is contained in:
2022-01-12 14:31:15 -07:00
parent b3a9f0e822
commit 07237f44a3
8 changed files with 1106 additions and 948 deletions

View File

@ -4,7 +4,7 @@
"description": "Helper for VS Code in TypeScript",
"publisher": "IFX",
"repository": "https://github.com/mikepharesjr/YO-VSCode/tree/master/type-script-helper",
"version": "1.3.4",
"version": "1.3.7",
"engines": {
"vscode": "^1.40.0"
},
@ -13,6 +13,8 @@
],
"main": "./out/extension.js",
"activationEvents": [
"onCommand:open-in-new-window.open",
"onCommand:promiseLinesHelper.codeGeneratorQuickPick",
"onCommand:readOnlyLinesHelper.searchGoogle",
"onCommand:replaceLinesHelper.addCSharpComment",
"onCommand:replaceLinesHelper.addVBComment",
@ -36,6 +38,14 @@
],
"contributes": {
"commands": [
{
"command": "open-in-new-window.open",
"title": "Open in New Window"
},
{
"command": "promiseLinesHelper.codeGeneratorQuickPick",
"title": "Code Generator - Quick Pick"
},
{
"command": "readOnlyLinesHelper.searchGoogle",
"title": "Search Google"
@ -117,19 +127,11 @@
"title": "Wrap Sql for VB"
}
],
"keybindings": [
{
"command": "replaceLinesHelper.unwrapSql",
"key": "shift + f9",
"when": "editorTextFocus"
}
],
"menus": {
"editor/context": [
"explorer/context": [
{
"command": "replaceLinesHelper.unwrapSql",
"when": "editorTextFocus",
"group": "replaceLinesHelper@1"
"command": "open-in-new-window.open",
"group": "openInNewWindowGroup"
}
]
}
@ -147,7 +149,7 @@
"@types/node": "^12.11.7",
"@types/vscode": "^1.40.0",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"mocha": "^9.1.3",
"tslint": "^5.20.0",
"typescript": "^3.9.10",
"vscode-test": "^1.2.2"