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

添加 路径转换 快捷键命令绑定;更新 CHANGELOG.md

This commit is contained in:
2024-12-14 21:07:11 +08:00
parent 6999fc30e8
commit f99146703b
4 changed files with 79 additions and 7 deletions

View File

@@ -40,6 +40,7 @@
// docs: https://code.visualstudio.com/docs/getstarted/keybindings#_accepted-keys
"keybindings": [
// 绑定快捷键
// ↓ 变量转换快捷键
{
"command": "variable-conversion.convertCase",
"key": "shift+alt+t",
@@ -62,6 +63,30 @@
"arrowKey": "]"
},
"when": "editorTextFocus"
},
// ↓ 路径转换快捷键
{
"command": "variable-conversion.convertPath",
"key": "shift+alt+/",
"when": "editorTextFocus"
},
// 循环转换 上一个
{
"command": "variable-conversion.cyclicConvertPath.previous",
"key": "ctrl+alt+shift+/",
"args": {
"direction": "<-"
},
"when": "editorTextFocus"
},
// 循环转换 下一个
{
"command": "variable-conversion.cyclicConvertPath.next",
"key": "ctrl+alt+/",
"args": {
"direction": "->"
},
"when": "editorTextFocus"
}
],
"commands": [