简介

我一直在寻找一种方法,让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 2008的注册表路径相同,但版本号为9.0:

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

其他回答

如果你是免费的Visual Studio Express版本的用户,右边的键是在

HKEY_CURRENT_USER\Software\Microsoft\VCExpress\9.0\Text Editor

(注意VCExpress而不是VisualStudio),但它工作!:)

这也适用于SQL Server Management Studio。

对于那些运行Visual Studio 2015或更高版本的人,最好的解决方案是安装Paul Harrington的编辑器指南,而不是自己更改注册表。

这篇文章来自萨拉的博客。

它也适用于几乎任何版本的Visual Studio,你只需要将注册表项中的“8.0”更改为适合你的Visual Studio版本的版本号。

指导线也会显示在Output窗口中。(Visual Studio 2010纠正了这一点,该行只显示在代码编辑器窗口中。)

你也可以通过在颜色说明符后面列出多个数字来让指南在多列中:

RGB(230,230,230), 4, 80

在第4列和第80列处设置一条白线。这应该是“文本编辑器”键中的字符串值指南的值(见下文)。

一定要选择在背景上可见的线条颜色。此颜色不会显示在vs的默认背景色中。这是浅灰色的值:RGB(221, 221, 221)。

以下是我所知道的注册表项:

VisualStudio 2010: HKCU\Software\Microsoft\VisualStudio\10.0\文本编辑器

VisualStudio 2008: HKCU\Software\Microsoft\VisualStudio\9.0\文本编辑器

VisualStudio 2005: HKCU\Software\Microsoft\VisualStudio\8.0\文本编辑器

VisualStudio 2003: HKCU\Software\Microsoft\VisualStudio\7.1\文本编辑器

生产力强大工具包括指导方针和其他有用的扩展,旧版本的Visual Studio。

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

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

这也可以在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