0

resharper has this new tab key rule within a class, when tab, it will convert tab into to navigation to the next part of the code but not adding tab spacing between them. does anyone know how to disable this?

koo9
  • 409
  • 5
  • 15
  • Possible duplicate of [Hitting Tab in Visual Studio selects block instead of adding indentation](http://stackoverflow.com/questions/39514915/hitting-tab-in-visual-studio-selects-block-instead-of-adding-indentation) – Matthias Sep 16 '16 at 18:17

1 Answers1

1

This is called Structural Navigation, and will select code as you hit Tab/Shift+Tab (very useful for tabbing between parameters, for example). You can change the behaviour in options, under Editor Behaviour. You can find more details on the feature and how it works in the docs.

citizenmatt
  • 18,085
  • 5
  • 55
  • 60
  • Useful indeed but the current ciding style require all properties type, names and get set bracket to align vertically (don't ask why). Whats the name of the rule in the editor behavior? – koo9 Sep 16 '16 at 19:56
  • "Structural Navigation" :) – citizenmatt Sep 19 '16 at 08:12