简介

我一直在寻找一种方法,让Visual Studio在一定数量的字符之后画一条线。

下面是为不同版本的Visual Studio启用这些所谓指南的指南。

Visual Studio 2013或更高版本

安装保罗哈林顿的编辑指南扩展。

Visual Studio 2010和2012

Install Paul Harrington's Editor Guidelines extension for VS 2010 or VS 2012. Open the registry at: VS 2010: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\Text Editor VS 2012: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.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. Or install the Guidelines UI extension (which is also a part of the Productivity Power Tools), 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和其他版本

如果你正在使用VisualStudio 2008,打开注册表HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor,并添加一个名为Guides的新字符串,值为RGB(100,100,100), 80。第一部分指定颜色,而另一部分(80)是行将显示的列。当您重新启动Visual Studio时,将出现竖线。

这个技巧也适用于各种其他版本的Visual Studio,只要你使用正确的路径:

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

这也适用于SQL Server 2005和其他版本。


当前回答

这也可以在Visual Studio 2010 (Beta 2)中工作,只要你安装Paul Harrington的扩展来启用VSGallery或VS2010中的扩展管理器中的指导方针。由于这是10.0版本,您应该使用以下注册表项:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\Text Editor

此外,Paul还编写了一个扩展,将条目添加到编辑器的上下文菜单中,以添加/删除条目,而不需要直接编辑注册表。你可以在这里找到它:http://visualstudiogallery.msdn.microsoft.com/en-us/7f2a6727-2993-4c1d-8f58-ae24df14ea91

其他回答

Visual Studio 2008的注册表路径相同,但版本号为9.0:

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

Visual Studio 2017 / 2019

对于任何寻找新版本Visual Studio的人来说,安装编辑器指南插件,然后在编辑器中右键单击并选择这个:

Visual Studio 2022

与上面的包是同一作者,但似乎他不得不将扩展扩展到2022年。

https://marketplace.visualstudio.com/items?itemName=PaulHarrington.EditorGuidelinesPreview&ssr=false#overview

你可能要找的是尺子而不是指南。

转到设置>编辑器>标尺>,给出一个字符计数数组,以提供指定值的行数。

这也适用于SQL Server Management Studio。

我发现这个Visual Studio 2010扩展:缩进指南

http://visualstudiogallery.msdn.microsoft.com/e792686d-542b-474a-8c55-630980e72c30

它工作得很好。