Martin
Martin

Reputation: 2086

"Show code structure in the margin" with VS2017

The Productivity Power Tools for Visual Studio 2015 have a setting "Show code structure in the margin" (Options / Productivity Power Tools / Other Extensions) that, well, showed the code structure in the margin, at least for C# and some other languages, see this screenshot:

Scrollbar map mode, left VS2015 with "Show code structure in the margin", right VS2017, both showing same C# file

Left side is VS2015 with this option on, right is VS2017, both showing the same C# file. I’m referring to the blueish lines and half-ellipse-shaped things.

Now the Productivity Power Tools have been refactored for Visual Studio 2017, and I wasn’t able to turn this feature on. Is it still there, and if yes, how can I turn it on?

Upvotes: 1

Views: 618

Answers (1)

jessehouwing
jessehouwing

Reputation: 114741

Looks like it's being rewritten to use Roslyn instead of the old API. A C++ version is already available. See also.

Upvotes: 2

Related Questions