Reputation: 26291
Don't know why Visual Studio 2012 changed ctrl+arrow (left, right) behavior. For example we have line of code:
int anyIntValue;
I place text cursor as below (<c>
- text cursor position):
int <c>anyIntValue;
And after pressing ctrl
+right arrow
got this:
int any<c>IntValue;
So cursor navigates to the nearest uppercase letter. But I need to return to the default behavior when after ctrl
+right arrow
we got:
int anyIntValue<c>;
May be you know where to find such setting in VS?
Upvotes: 8
Views: 2622
Reputation: 227
You should change the resharper editor options. Uncheck the use CamelHumps checkbox.
Upvotes: 17