views:

53

answers:

1

On Windows, Ctrl+Right Arrow will move the text cursor from one "word" to the next. While working with Xcode on the Mac, they extended that so that Option+Right Arrow will move the cursor to the beginning of the next subword. For example, if the cursor was at the beginning of the word myCamelCaseVar then hitting Option+Right Arrow will put the cursor at the first C. This was an amazingly useful feature that I haven't found in a Windows editor.

So to my question: Do you know of any way to do this in Visual Studio (perhaps with an Add-In)? I'm currently using pretty old iterations of Visual Studio (VB6 and VC++), although I'm interested to know if the more modern releases can do this, too.

+2  A: 

ReSharper has a "Camel Humps" feature that lets you do this.

bdukes