添加 路径转换 快捷键命令绑定;更新 CHANGELOG.md
This commit is contained in:
@@ -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": [
|
||||
|
Reference in New Issue
Block a user