用于在VS代码中选择单词和扩展选择的快捷键

时间:2016-10-23 13:10:04

标签: keyboard-shortcuts visual-studio-code

在VS with Resharper中,命令 ctrl w 将在光标处选择整个单词,然后在重复按下时将选择范围扩展为括号,然后也包括它们,然后到下一个外括号等。

Visual Studio Code中的命令名称是什么?

2 个答案:

答案 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"
}