在VS with Resharper中,命令 ctrl w 将在光标处选择整个单词,然后在重复按下时将选择范围扩展为括号,然后也包括它们,然后到下一个外括号等。
Visual Studio Code中的命令名称是什么?
答案 0 :(得分:19)
shrink/expand selection命令应该是你要找的。命令名称为editor.action.smartSelect.grow
(默认键绑定 shift + alt + 右)和editor.action.smartSelect.shrink
(默认键绑定移 + ALT + 左)。
答案 1 :(得分:1)
我将alt + s用于editor.action.smartSelect.grow。
{
"key": "alt+s",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
}