vote up 2 vote down star

The SPE IDE that I use for my Python code uses this "visual cue" that looks like a vertical dashed line for alignment of (what I would call) function blocks. How can I get this option in Visual Studio 2008?

Here is what it looks like:

flag
Thanks Drew :-) – seedofc Sep 19 at 16:19
No problem. A picture paints a thousand words. – Drew Noakes Sep 19 at 16:24

3 Answers

vote up 3 vote down check

I've seen it called structural highlighting or code outlining.

There's a Visual Studio plug-in called CodeRush from Developer Express that supports this (bottom of the page) and a lot more.

update:

As divo mentioned, there is a free lite version of CodeRush. I confirmed that it includes structural highlighting.

link|flag
1  
Please note that there is a free edition for C# (and maybe VB, haven't checked it) available at msdn.microsoft.com/en-us/vcsharp/… – divo Sep 19 at 17:06
Yes, this is exactly what I need -- Coderush Xpress Structural Highlighting. Thanks!! – seedofc Sep 19 at 17:24
Installed. Confirmed - This is exactly what I needed. Thanks again! – seedofc Sep 19 at 17:40
vote up 2 vote down

Unfortunately, Visual Studio does not support indentation lines out of the box.

link|flag
Thanks for your reply. Are there any third party plug-ins that add this functionality? – seedofc Sep 19 at 16:16
1  
Check out codekana.com. – Andrew Hare Sep 19 at 16:39
vote up 1 vote down

These lines are arguably more useful in Python where indentation denotes nesting. In C#, nesting is explicitly marked by curly braces. I feel as though curly braces provide the visual cues I need to see this kind of thing, so you might just try to persevere -- in time the cognitive load associated with glimpses of C# versus glimpses of Python will reach equilibrium.

VS2010 implements the text editor in WPF and there are some examples online of creating plug-ins that augment the text editor area. This could be a fun project without being too difficult.

I am envious of Python's indentation-centric nesting. I wish that the C# compiler supported something like that. I wish that white space was part of the language. It would make tooling support for the language better as well.

link|flag
Drew, your assessment seems spot on. However, for some reason, the curly braces throw me off. I feel like I'm constantly trying to figure out where a block of code starts and ends. This could be because I'm relatively new to programming in general. I definitely feel like Python's use of whitespace and indentation makes it much easier to read in comparison to C#'s curly braces. – seedofc Sep 19 at 16:43

Your Answer

Get an OpenID
or

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