vote up 4 vote down star

Is there any way to make Visual Studio word-wrap at 80 characters? I'm using VS2008.

This post is loosely related.

flag

Is this a personal thing, or do you have an instructor for a class that requires it? I would find line wrapping at all rather... restrictive to my coding style, as I like to use long descriptive names for things. ^_^ – Nicholas Flynt Oct 25 '08 at 14:54
I'm with Nicholas Flynt - restricting code to 80 characters per line is typical for uni assignments, but is in my opinion rather unproductive in The Real World[TM]. – OregonGhost Oct 25 '08 at 17:21
Maybe 80 is too restrictive... but I prefer a relatively narrow setting because it lets me see the whole statement at once, without auto-hiding the toolbox and other auxiliary windows. – JosephStyons Oct 29 '08 at 17:55
Restrict column width has many advantages. Read this: cookcomputing.com/blog/archives/… See this: vulcan.eager.googlepages.com/whereis.png – Agnel Kurian Dec 17 '08 at 7:48

4 Answers

vote up 1 vote down check

Tools >> Options >> Text Editor >> All Languages >> General >> Select Word Wrap.

I dont know if you can select a specific number of columns?

link|flag
vote up 5 vote down

I don't think you can make VS wrap at 80 columns (I'd find that terribly annoying) but you can insert a visual guideline at 80 columns so you know when is a good time to insert a newline.

Details on inserting a guideline at 80 characters for 3 different versions of visual studio.

link|flag
vote up 1 vote down

Unless someone can recommend a free tool to do this, you can achieve this with ReSharper:

ReSharper >> Options... >> Languages/C# >> Line Breaks and Wrapping

  • Check "Wrap long lines"
  • Set "Right Margin (columns)" to the required value (default is 120)

Hope that helps.

link|flag
vote up 1 vote down

To do this with Visual Assist (another non-free tool):

VAssistX >> Visual Assist X Options >> Advanced >> Display

  • Check "Display indicator after column" and set the number field to 80.
link|flag

Your Answer

Get an OpenID
or

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