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?