Resharperを使用したVSでは、次のコマンドがあります。 ctrlw カーソル位置のWord全体を選択し、繰り返し押すと、選択範囲を角かっこまで拡張し、次にそれらも含めて、次の外側の角かっこまで拡張します。
Visual Studio Codeでそのためのコマンドの名前は何ですか?
shrink/expand selection コマンドは、探しているものである必要があります。コマンド名はeditor.action.smartSelect.grow
(デフォルトのキーバインド shift+alt+right)およびeditor.action.smartSelect.shrink
(デフォルトのキーバインド shift+alt+left)。
editor.action.smartSelect.growにalt + sを使用します。
{
"key": "alt+s",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
}