Click here to Skip to main content
15,886,518 members
Articles / All Topics

Visual Studio Text Editor Guidelines

Rate me:
Please Sign up or sign in to vote.
4.33/5 (3 votes)
8 Sep 2011CPOL 22.6K   2  
Visual Studio Text Editor Guidelines

Having guidelines in your code editor makes it a bit easier to maintain your code in a tidy manner. For Visual Studio 2010, I use these free extensions:

  • Indent Guides by Steve Dower – displays indent guides in Visual Studio text editor windows.
  • Editor Guidelines by Paul Harrington – adds vertical guidelines behind the text at user-specified column positions.
  • Editor Guidelines UI by Paul Harrington – adds submenu with three commands to the code editor’s context menu (right click) for managing editor guidelines – no need to edit the registry for guidelines configuration anymore.

For Visual Studio 2008 and older, you have to use regedit. Navigate to:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor

and add a string named “Guides” with value “RGB(0,255,0),80” to create a guideline after column 80. To have more guidelines e.g., after column 80 and 130, set the value to
RGB(0,255,0),80,130“.

Note: Editor Guidelines extension for VS2010 uses a registry entry similar to the one described above, however its syntax is less strict. I found out on VS2008, that “Guides” string value cannot contain any spaces.

For reference, please visit: Adding a guideline to the editor in Visual Studio at StackOverflow.com.


License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Poland Poland
Aoi Karasu is a Software Developer with his first programming experience at the age of 7 (FoxBase and Turbo Pascal for DOS).

Karasu has extensive knowledge and experience with many Microsoft technologies and languages, including C++, C#, Xamarin, ASP.NET MVC, WinForms, WPF, .NET Interop, CLI, ActiveX/COM, MFC/ATL/WTL, Windows API, OCS/UCMA/UCC API, reverse engineering (assembly, IL) and lately diving into UWP development.

Comments and Discussions

 
-- There are no messages in this forum --