Adding a guideline to the editor in Visual Studio

Posted by xsl on Stack Overflow See other posts from Stack Overflow or by xsl
Published on 2008-09-17T15:04:28Z Indexed on 2010/05/06 13:18 UTC
Read the original article Hit count: 371

Introduction

I've always been searching for a way to make Visual Studio draw a line after a certain amount of characters:

Picture of the guidelines

Below is a guide to enable these so called guidelines for various versions of Visual Studio.

Visual Studio 2010

  1. Install Paul Harrington's Editor Guidelines extension.
  2. Open the registry at HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\Text Editor and add a new string called Guides with the value RGB(100,100,100), 80. The first part specifies the color, while the other one (80) is the column the line will be displayed.
  3. Or install the Guidelines UI extension, which will add entries to the editor's context menu for adding/removing the entries without needing to edit the registry directly. The current disadvantage of this method is that you can't specify the column directly.

Visual Studio 2008 and Other Versions

If you are using Visual Studio 2008 open the registry at HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor and add a new string called Guides with the value RGB(100,100,100), 80. The first part specifies the color, while the other one (80) is the column the line will be displayed. The vertical line will appear, when you restart Visual Studio.

This trick also works for various other version of Visual Studio, as long as you use the correct path:

2003: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\7.1\Text Editor
2005: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\Text Editor
2008: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor
2008 Express: HKEY_CURRENT_USER\Software\Microsoft\VCExpress\9.0\Text Editor

This also works in SQL Server 2005 and probably other versions.

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about ide