8

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?

Sergey Metlov
  • 25,747
  • 28
  • 93
  • 153
  • This did not change. Uninstall the add-in that causes this problem. – Hans Passant May 12 '13 at 20:44
  • 1
    @HansPassant I am having the opposite problem. Coming from eclipse, i am comfortable with cursor stopping before UPPER case letter. How can i configure this setting? – hendrix May 17 '13 at 16:01
  • 1
    Clearly you are looking for the same addin that Sergey is trying to get rid of. You should ask him, not me. – Hans Passant May 17 '13 at 16:14
  • I was really hoping that VS 2019 would have this. I found a duplicate question with more ideas: https://stackoverflow.com/questions/314095/make-visual-studio-understand-camelcase-when-hitting-ctrl-and-cursor-keys – AlignedDev Mar 24 '21 at 18:39
  • Does this answer your question? [Make Visual Studio understand CamelCase when hitting Ctrl and cursor keys](https://stackoverflow.com/questions/314095/make-visual-studio-understand-camelcase-when-hitting-ctrl-and-cursor-keys) – AlignedDev Mar 24 '21 at 18:39

1 Answers1

17

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

Orf Quarenghi
  • 227
  • 3
  • 9