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
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章