## 1.116.0

This commit is contained in:
2025-02-24 17:36:06 -07:00
parent baa3c222f3
commit ab334f91dc
8 changed files with 439 additions and 38 deletions

View File

@ -1,10 +1,42 @@
{
"activationEvents": [],
"activationEvents": [
"onLanguage:csharp",
"onLanguage:markdown",
"onLanguage:javascript",
"onLanguage:json",
"onLanguage:typescript",
"onLanguage:yaml"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"category": "Calculate",
"command": "extension.calcAppendWithCursor",
"title": "Calculate and append in front of cursor"
},
{
"category": "Calculate",
"command": "extension.calcAppend",
"title": "Calculate and append"
},
{
"category": "Calculate",
"command": "extension.calcReplaceWithCursor",
"title": "Calculate and replace in front of cursor"
},
{
"category": "Explorer",
"command": "extension.rotateExplorerSortOrder",
"title": "Rotate Explorer Sort Order"
},
{
"category": "Calculate",
"command": "extension.calcReplace",
"title": "Calculate and replace"
},
{
"category": "Helper",
"command": "copyHelper.copySyntaxInLight",
@ -230,7 +262,7 @@
]
}
},
"title": "Type Script Helper Configuration",
"title": "Cost of Delay Helper Configuration",
"type": "object"
}
},
@ -249,6 +281,7 @@
"@vscode/test-electron": "^2.4.0",
"@vscode/test-web": "*",
"concurrently": "^8.2.2",
"editor-calc": "^2.1.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
@ -290,5 +323,5 @@
"watch": "concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\"",
"webpack": "webpack --config ./build/node-extension.webpack.config.js"
},
"version": "1.115.0"
"version": "1.116.0"
}