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

How to automatically indent source code in visual studio 2010?

I have used Ctrl + K , Ctrl + F, but it does not works, is there any other way/plugin could do this work?

share|improve this question
What type of source code? If it doesn't work it's either corrupted VS install, or nonstandard file. Or different keyboard shortcut defaults, try the edit menu. – Coder Oct 18 '10 at 18:29
@Madman: I am using ViEmu, VAssitX. Its a C# source file. Now surprisely It works fine. – Jichao Oct 19 '10 at 4:30
you just need to select all the text/code before doing CTRL+K, CTRL+F, then it should work – xus Apr 26 '12 at 11:56

4 Answers

up vote 52 down vote accepted

Ctrl+E, D - Format whole doc
Ctrl+K, Ctrl+F - Format selection

Also available in the menu via Edit|Advanced.

Thomas

share|improve this answer
I've been looking for this in the right click menu, how silly of me. – IBC Dec 18 '10 at 10:22

In 2010 it is Ctrl+k, Ctrl+d. See image below.

enter image description here

share|improve this answer

In 2010 it is ctrl+k+d for indentation

share|improve this answer

Also, there's the handy little "increase indent" and "decrease indent" buttons. If you highlight a block of code and click those buttons the entire block will indent.

share|improve this answer
2  
also TAB and SHIFT + TAB work like these – jmacboy Aug 21 '12 at 20:07

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.