Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual studio ctrl+arrow setting

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?

like image 780
Sergey Metlov Avatar asked May 11 '13 15:05

Sergey Metlov


1 Answers

You should change the resharper editor options. Uncheck the use CamelHumps checkbox.

like image 156
Orf Quarenghi Avatar answered Oct 13 '22 04:10

Orf Quarenghi