A vim / sublime EasyMotion clone for Visual Studio.
The caret is at the end of the using block and you want to move it to the 'C' in 'Console.WriteLine.
Instead of moving your hands to the arrow keys or even worse, grabbing the mouse, simple initiate an easy motion search by pressing Shift+Control+;
.
The editor adds a status line to let you know it's ready to search. Type 'C' as this is the character we want to navigate to.
The editor will replace all occurences of 'C' with a new letter (A-Z). At this point if you type any of the letters the caret will be moved to that location. In this case you type 'I' to move to the correct occurence of 'C'
The caret is now at the start of 'Console.WriteLine' as we wanted at the start