Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

All, In my VS2008 C# editor window I'm trying to get from this:

/******** CONSTANTS ********/
const int HOLD_AWAITING_PAYMENT = 1;
const int HOLD_INT_LENDER_APPROVAL = 2;
const int HOLD_MDIA = 3;

to this:

/******** CONSTANTS ********/
const int HOLD_AWAITING_PAYMENT      = 1;
const int HOLD_INT_LENDER_APPROVAL   = 2;
const int HOLD_MDIA                  = 3;

I seem to remember that there's a hot key or plug-in or somethat that does this. Does anyone remember the formatting trick?

share|improve this question

3 Answers

up vote 2 down vote accepted

There is a macro called LineEmUp in VS 2008 that does exactly this.
Tools > Options > Keyboard > Show commands containing: LineEmUp

You can assign it to any key combination right there.

Upd: note that you have to call it multiple times if you need to format more than one "column" in your code block.

share|improve this answer
Hey @DK, you answer it, that's exactly what I was remembering, +1! But, the macro isn't working very well. It moved my code around a little bit but didn't push the equals signs all way out and aligned them. Have you used this with much success? If I can't get it to work then I may dip my pinky toe into some VS2008 macro coding. Or maybe a better LineEmUp macro already exists??? – sisdog Jul 22 '11 at 21:27
@sisdog, yes, I use it a lot and it works pretty good for me; and yes - there are other flavors of this macro online - the keyword to search for is LineEmUp ;) Just to double-check that we are talking about the same macro, please see this answer's history - I've actually posted complete macro code before realizing that this macro comes from MS itself. – DK. Jul 22 '11 at 22:09

[CTRL] + [K] + [CTRL] + [D] is the default hotkey sequence to format an entire document.

However the rules regarding the formatting of the code is dependent on the settings configured in:

Tools > Options > Text Editor > {Language} > Formatting

share|improve this answer

Not with the default formatting of VS. You're looking for what's called 'alignment' setting in other editors. You need to use a extension like Resharper (there are others but I can't recollect now).

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.