Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use CTRL + Arrow to skip full symbol in Visual Studio 2012

In the previous versions of Visual Studio, I could use CTRL + -> and CTRL + <- to move between whole symbols, i.e., jump between whitespace:

Pressing CTRL + <- when my cursor is:

void int GetMyInteger|();

Would result in the state:

void int |GetMyInteger();

Now, in Visual Studio 2012, the behavior has been modified to something like this:

Pressing CTRL + <- when my cursor is:

void int GetMyInteger|();

Would result in the state:

void int GetMy|Integer();

I want the older behavior back, as it was more efficient to navigate the code. Is there any configuration that would allow me to change it back?

like image 736
Bruno Brant Avatar asked Dec 01 '12 23:12

Bruno Brant


1 Answers

In my Resharper 7, this can be turned off in the following way.

Resharper/Options

=> Environment/Editor

Find the checkbox for "Use CamelHumps". Uncheck it

VERY annoying feature to have turned on by default. Such a relief to turn it off, since I do almost all code navigation with my keyboard.

like image 60
Mahol25 Avatar answered Nov 04 '22 15:11

Mahol25