I'm looking for a tool (macro, extension) for Visual Studio 2008 that would reformat the source code (C/C++) when you save the file.

link|improve this question

64% accept rate
Have you tried CTRL+K, CTRL+D ? – Mitch Wheat Oct 25 '09 at 7:09
2  
It's CTRL+K, CTRL+F in the C++ editor, but yeah, I was about to suggest that too. – Kim Gräsman Oct 25 '09 at 7:12
Thanks Kim! ... – Mitch Wheat Oct 25 '09 at 7:34
feedback

2 Answers

up vote 3 down vote accepted

AStyle was my first hit on Google. Looks reasonable. You can tie that to a keyboard event under 'External Tools' in Visual Studio. (I suspect writing/recording a small macro that formats and saves the file is easy, as is rebinding that to Ctrl-S)

See also http://stackoverflow.com/questions/841075/best-c-code-formatter-beautifier, which also recommends AStyle.

link|improve this answer
Sorry but AStyle has a big issue handling Unicode source files - it does garbage them. – Sorin Sbarnea Oct 26 '09 at 12:37
1  
Seems to be fixed in SVN: sourceforge.net/tracker/… – Macke Oct 26 '09 at 19:58
feedback

Wasn't it so that you can define a "macro" in Visual Studio yourself? If so, you could try making one to do something like Ctrl+A -> Ctrl+K Ctrl+F -> Ctrl+S meaning select all, reformat, save and then bind it to your Ctrl+S. I'm not sure, but I think it wouldn't be too complicated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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