我正在开发Wordpress主题。 WordPress开发人员更喜欢snake_case编码。有没有像IntelliJ骆驼驼峰单词选择的功能。
答案 0 :(得分:1)
有两个未绑定的命令用于选择单词部分,例如snake_case。
cursorWordPartLeftSelect
cursorWordPartRightSelect
cursorWordPartStartLeftSelect
还有一些其他命令可用于在单词部分之间移动,但不能选择它们。只需在键盘快捷键中搜索“ wordpart”即可。
也许是诸如以下的键绑定:
{
"key": "alt+right",
"command": "cursorWordPartRight",
"when": "editorTextFocus",
},
{
"key": "alt+left",
"command": "cursorWordPartLeft",
"when": "editorTextFocus",
},
{
"key": "ctrl+alt+right",
"command": "cursorWordPartRightSelect"
},
{
"key": "ctrl+alt+left",
"command": "cursorWordPartLeftSelect"
}