I recently migrated from Sublime Text 3 to WebStorm 11, and I donβt have a key function when choosing an entry of the same choice:
Ability to skip a selection (using the hotkey).
Use case
const item = { itemValue: 1, itemName: 'one' }; console.log(item.itemValue);
Selecting the first item
and pressing Ctrl + G
(Mac) will begin to select the occurrences of item
inside the properties of the object, and I want to select only item
immediately after const
and inside console.log
. Essentially, I want to skip two item
events inside an object.
This is an illustrative use case to illustrate the point, I know I can Refactor> Rename it.
source share