Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know Visual Studio can auto format to make my methods and loops indented properly, but I cannot find the setting.

share|improve this question

4 Answers

up vote 20 down vote accepted

to format a section: ctrl + k, ctrl + f or ctrl + e, ctrl + f

to format a document ctrl + e, ctrl + d

see more at edit->advanced menu

share|improve this answer
14  
You mean CTRL-E,F and CTRL-E,D ... – CrazyPyro Feb 3 at 0:31

Using 2010 on windows 7: Edit -> Advanced

Shows options for:

  • Format Document (Ctrl+K, Ctrl+D) so type Ctrl+K, AND THEN Ctrl+D as it is a sequence
  • Format Selection (Ctrl+K, Ctr+F)

The Alt version Bogdan Verbenets gives, opens menus from the toolbar

share|improve this answer
1  
If you find that it isn't working, check your brackets {}, (), when it doesn't work for me, it is because there are open brackets somewhere in the file. – ono2012 Oct 17 '12 at 12:35

Go to Tools->Options

Then go to the Text Editor options and click the language of your choice. I used C# as an example. Settings for formatting code such as indent spacing are here.

enter image description here

share|improve this answer

If you display the HTML Source Editing toolbar there is a "Format the Whole Document" button as well

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.