How can I make Visual Studio wrap lines at 80 characters?

Visual Studio

Visual Studio Problem Overview


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

This post is loosely related.

Visual Studio Solutions


Solution 1 - Visual Studio

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.

Solution 2 - Visual Studio

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

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

Solution 3 - Visual Studio

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.

Solution 4 - Visual Studio

You can also use

Ctrl+E, Ctrl+W

keyboard shortcut to toggle wrap lines on and off.

Solution 5 - Visual Studio

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.

Solution 6 - Visual Studio

Adds vertical column guides to the Visual Studio text editor. This version is for Visual Studio 2012, Visual Studio 2013 or Visual Studio 2015.

See the plugin.

Solution 7 - Visual Studio

I stumbled upon this question when was actually searching for an answer to this one (how to add a visual line/guideline at char limit). So I would like to leave a ref to it here for anyone like myself.

Solution 8 - Visual Studio

If the problem is simply that you want to know when you pass 80 characters for a single line, which is a common coding guideline limit, you can use a different approach: Editor Guidelines. This will add vertical column guides behind your code.

Solution 9 - Visual Studio

See also this answer in order to switch the mode conveniently.

Citation:

> I use this feature often enough that I add a custom button to the command bar. > > Click on the Add or Remove -> Customize >
Click on the Commands tab >
Select Edit|Advanced from the list >
Find Toggle Word Wrap and drag it onto your bar

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJosephStyonsView Question on Stackoverflow
Solution 1 - Visual StudioIgal TabachnikView Answer on Stackoverflow
Solution 2 - Visual StudioTGnatView Answer on Stackoverflow
Solution 3 - Visual StudioStewart JohnsonView Answer on Stackoverflow
Solution 4 - Visual StudioCory KochView Answer on Stackoverflow
Solution 5 - Visual StudioidbriiView Answer on Stackoverflow
Solution 6 - Visual Studiouser1108948View Answer on Stackoverflow
Solution 7 - Visual StudioCorioView Answer on Stackoverflow
Solution 8 - Visual StudioHelloGoodbyeView Answer on Stackoverflow
Solution 9 - Visual StudioRoland PihlakasView Answer on Stackoverflow