How do I skip a match when using Ctrl+D for multiple selections in Sublime Text 2?

问题:

I have some code like:我有一些代码,如:

testVar = { a: 1 };
testVariable1 = 2;
var c = testVar.a + testVariable2;
var d = testVar;

I want to rename "testVar" variable.我想重命名“testVar”变量。 When I set multiple cursors with Ctrl + D and edit variable, "testVariable" is also selected and edited.当我使用Ctrl + D和编辑变量设置多个光标时,也会选择和编辑“testVariable”。

Is there a way to skip some selections while setting multiple cursors with Ctrl + D ?有没有办法在使用Ctrl + D设置多个光标时跳过一些选择?


解决方案:

参考一: https://en.stackoom.com/question/mSF2
参考二: https://stackoom.com/question/mSF2
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章