vote up 0 vote down star

I've been using VS2005 and VS2008 now for a while, with C#, without any addtional tools I could hit ctrl k + d and the code would nicely reformat. Why C++ doesn't do it? It's the same Visual Studio after all. Is there a way to enable it?

A second part of this question is related, for those who've been using resharper with C#, is that a similar tool for C++?

flag

4 Answers

vote up 0 vote down

Ontopic: In VS2008 Express Format Selection is ALT+F8 and CTRL+K, CTRL+D is mapped to Format Document. It's probably the same in professional versions of VS2008.

Less ontopic: I tend to avoid source code formatters for C++ as I feel they generally often does more harm than good. Why? Codeformaters has to "read" the code and understand what the different code statements do. This is quite easy in e.g. Java where the syntax is straight forward. C++ is a very complex language. There's 10 ways to do just about anything. You can use macros, defines, typedefs and whatnot. Classes are usually defined/declared in two different files. This is also the reason that Intellisense seems to fail quite often - VS2008 fails parsing the code correctly. It's very hard for an IDE to know what all statements is and how to format them. Although it may work ok most of the time, you can be pretty sure that it will give bad results now and then. I'm guessing Microsoft didn't spend too much time customizing the code formatter for C++ as they realize that most C++-programmers do this by hand anyways. I rarely miss it, except when some co-worker of mine isn't following the company standard.

link|flag
vote up 0 vote down

For me it's always been select text, CTRL + K, F. It doesn't do as well as in Visual C# though; there are no customization options beside the most basic ones.

link|flag
vote up 2 vote down
  1. You can use Ctrl-K+Ctrl-F for "format selection".

  2. Link

link|flag
vote up 0 vote down

It's probably there, but mapped to a different keyboard shortcut. For example, on my VS2008 install Ctrl+K,D doesn't map to anything but Ctrl+E,D maps to the Edit|Advanced|Format Document command.

link|flag
Running VS2008EE I can only see a Ctrl+K,F "Format Selection" command – GRB Sep 14 at 1:56

Your Answer

Get an OpenID
or

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