1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

实现 Shift+Alt+T 将选中文字转换为大写

This commit is contained in:
zhangbk1
2024-03-28 14:45:09 +08:00
parent 8924b1cca3
commit 17953f6927
3 changed files with 130 additions and 12 deletions

View File

@@ -9,7 +9,9 @@
"categories": [
"Other"
],
"activationEvents": [],
"activationEvents": [
"onCommand:extension.convertCase"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
@@ -17,6 +19,13 @@
"command": "text-conversion.helloWorld",
"title": "Hello World"
}
],
"keybindings": [
{
"command": "extension.convertCase",
"key": "shift+alt+t",
"when": "editorTextFocus"
}
]
},
"scripts": {