Search Google - Selection

This commit is contained in:
2021-10-20 09:47:27 -07:00
parent b7453ff4f1
commit 21324f6ab6
9 changed files with 112 additions and 62 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.2.4",
"version": "1.2.8",
"engines": {
"vscode": "^1.40.0"
},
@ -13,43 +13,43 @@
],
"main": "./out/extension.js",
"activationEvents": [
"onCommand:helper.addCSharpComment",
"onCommand:helper.addVBComment",
"onCommand:helper.convertToRegularExpression",
"onCommand:helper.cutEachLine",
"onCommand:helper.expandSql",
"onCommand:helper.listToListFamily",
"onCommand:helper.listToListWrappedComma",
"onCommand:helper.prettySql",
"onCommand:helper.removeComment",
"onCommand:helper.searchGoogle",
"onCommand:helper.sortLength",
"onCommand:helper.sortNormal",
"onCommand:helper.unwrapSql",
"onCommand:helper.wrapSqlCSharp",
"onCommand:helper.wrapSqlVB"
"onCommand:readOnlyLinesHelper.searchGoogle",
"onCommand:replaceLinesHelper.addCSharpComment",
"onCommand:replaceLinesHelper.addVBComment",
"onCommand:replaceLinesHelper.convertToRegularExpression",
"onCommand:replaceLinesHelper.cutEachLine",
"onCommand:replaceLinesHelper.expandSql",
"onCommand:replaceLinesHelper.listToListFamily",
"onCommand:replaceLinesHelper.listToListWrappedComma",
"onCommand:replaceLinesHelper.prettySql",
"onCommand:replaceLinesHelper.removeComment",
"onCommand:replaceLinesHelper.sortLength",
"onCommand:replaceLinesHelper.sortNormal",
"onCommand:replaceLinesHelper.unwrapSql",
"onCommand:replaceLinesHelper.wrapSqlCSharp",
"onCommand:replaceLinesHelper.wrapSqlVB"
],
"contributes": {
"commands": [
{ "command": "helper.addCSharpComment", "title": "Add C# Comment" },
{ "command": "helper.addVBComment", "title": "Add VB Comment" },
{ "command": "helper.convertToRegularExpression", "title": "Convert to Regular Expression" },
{ "command": "helper.cutEachLine", "title": "Cut each line after |||" },
{ "command": "helper.expandSql", "title": "Expand Sql" },
{ "command": "helper.listToListFamily", "title": "List to list family (Kristy, Mike ...)" },
{ "command": "helper.listToListWrappedComma", "title": "List to list wrapped comma" },
{ "command": "helper.prettySql", "title": "Pretty Sql" },
{ "command": "helper.removeComment", "title": "Remove comment" },
{ "command": "helper.searchGoogle", "title": "Search Google" },
{ "command": "helper.sortLength", "title": "Sort by Length" },
{ "command": "helper.sortNormal", "title": "My Sort lines (ascending, case sensitive)" },
{ "command": "helper.unwrapSql", "title": "Un-wrap Sql" },
{ "command": "helper.wrapSqlCSharp", "title": "Wrap Sql for C#" },
{ "command": "helper.wrapSqlVB", "title": "Wrap Sql for VB" }
{ "command": "readOnlyLinesHelper.searchGoogle", "title": "Search Google" },
{ "command": "replaceLinesHelper.addCSharpComment", "title": "Add C# Comment" },
{ "command": "replaceLinesHelper.addVBComment", "title": "Add VB Comment" },
{ "command": "replaceLinesHelper.convertToRegularExpression", "title": "Convert to Regular Expression" },
{ "command": "replaceLinesHelper.cutEachLine", "title": "Cut each line after |||" },
{ "command": "replaceLinesHelper.expandSql", "title": "Expand Sql" },
{ "command": "replaceLinesHelper.listToListFamily", "title": "List to list family (Kristy, Mike ...)" },
{ "command": "replaceLinesHelper.listToListWrappedComma", "title": "List to list wrapped comma" },
{ "command": "replaceLinesHelper.prettySql", "title": "Pretty Sql" },
{ "command": "replaceLinesHelper.removeComment", "title": "Remove comment" },
{ "command": "replaceLinesHelper.sortLength", "title": "Sort by Length" },
{ "command": "replaceLinesHelper.sortNormal", "title": "My Sort lines (ascending, case sensitive)" },
{ "command": "replaceLinesHelper.unwrapSql", "title": "Un-wrap Sql" },
{ "command": "replaceLinesHelper.wrapSqlCSharp", "title": "Wrap Sql for C#" },
{ "command": "replaceLinesHelper.wrapSqlVB", "title": "Wrap Sql for VB" }
],
"keybindings": [
{
"command": "helper.unwrapSql",
"command": "replaceLinesHelper.unwrapSql",
"key": "shift + f9",
"when": "editorTextFocus"
}
@ -57,9 +57,9 @@
"menus": {
"editor/context": [
{
"command": "helper.unwrapSql",
"command": "replaceLinesHelper.unwrapSql",
"when": "editorTextFocus",
"group": "helper@1"
"group": "replaceLinesHelper@1"
}
]
}