vote up 8 vote down star

Is there any way to automatically wrap comments at the 80-column boundary as you type them? ..or failing that, any way to display a faint line at the coulmn 80 boundary to make wrapping them manually a little easier?

Several other IDEs I use have one or other of those functions and it makes writing comments that wrap in sensible places much easier/quicker.

[Edit] If (like me) you're using Visual C++ Express, you need to change the VisualStudio part of the key into VCExpress - had me confused for a while there!

flag

78% accept rate

8 Answers

vote up 10 vote down check

Take a look at the question here: http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008

It shows how to do that:

"Under "HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\Text Editor" Create a String called "Guides" with the value "RBG(255,0,0), 80" to have a red line at column 80 in the text editor."

link|flag
1  
should be 79, not 80. columns are 0-based. – echorhyn Mar 24 at 13:51
vote up 2 vote down

See Blogpost from Sara Ford: http://blogs.msdn.com/saraford/archive/2004/11/15/257953.aspx

link|flag
vote up 2 vote down

For Visual C 2008 Express users (like me) you'll need:

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

Add a string value called Guides with the following value (as per the other responses):

RGB(180,180,255) 80
link|flag
vote up 2 vote down

In order to make Visual Studio text editor show a faint line on the 80th column you open RegEdit and locate the following:

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

Please notice that 9.0 is for Visual Studio 2008. You should put 8.0 if you have Visual Studio 2005.

You create a new String value named Guides and enter the following value:

RGB(128,0,0) 80

You can adjust the RGB color to the value you like. The number 80 is the column you want the line to appear at. You can add another line (although I don't see how this can help) like that:

RGB(128,0,0) 2,80

This will make two lines appear, one at the 2th column and one at the 80th column.

link|flag
I would change HKCU for HKEY_CURRENT_USER to make it absolutely clear what you're specifying.. – Jon Cage Sep 26 '08 at 11:25
Thanks Jon, I've changed that. – Petros Sep 26 '08 at 12:04
vote up 2 vote down

This is provided as a sample macro:

Macros.Samples.VSEditor.FillCommentParagraph

The first time you run it it'll ask you what fill width you want (i.e. 80). I bind this to Alt-Q since I'm an Emacs refugee. After that you just move into the comment you want to format, run the command, and it'll wrap your comments suitably.

It ain't perfect, but it's pretty good.

link|flag
Thanks David - that's rather handy! – Jon Cage Apr 14 at 9:19
vote up 1 vote down

HKCU\Software\Microsoft\VisualStudio\9.0\Text Editor\Guides = [REG_SZ] "RGB(192,192,192) 80" (Looking at my 8.0 registry, so I'm not 100% certain)

link|flag
vote up 0 vote down

By the way, in addition to the rightmost guide as per comments above, I also set lower contrast guides for columns 4, 8, 12, 16 etc. This really helps with code readability.

link|flag
Interesting idea.. have you ever tried e-texteditor.com ? ...it can optionally put ...'s to indicate 4-space indentation points. This makes editing Python in particular much easier :) – Jon Cage Sep 26 '08 at 23:25
vote up 0 vote down

SlickEdit Tools for Visual Studio. There is a very good real time comment wrapper that automatically adjust length of lines as you type.

http://www.slickedit.com/products/slickedit-tools

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.