3
我已經習慣於Webstorm的「Extend Selection」快捷方式,它將選擇增加到下一個特殊字符。Visual Studio代碼快捷方式相當於Webstorm/IntelliJ擴展選擇
實例(如果光標某處「someObjectProperty」,並在快捷啓動):
var foo = someObject.someObjectProperty.subProperty;
<-- selection 1 -->
<------ selection 2 --------->
<-------------- selection 3 ------------>
現在,我已經切換到Visual Studio代碼項目,最接近於這種類型的快捷方式的我已發現是'editor.action.smartSelect.grow'快捷方式
然而,雖然它是相似的,但它是不一樣的。使用相同的例子(如果光標某處「someObjectProperty」,並在快捷啓動):
var foo = someObject.someObjectProperty.subProperty;
<---------------- selection 1 -------------->
<------------------- selection 2 ------------------>
有什麼在VS代碼類似的上述擴展選擇在WebStorm?