jon
jon

Reputation: 1808

Visual Studio Code first level embed

Hi friends, thank for help. I'm not very used to stackoverflow. Sorry if my post is not compliant.

I am looking for an option in visual studio code that would allow me to see the first level embed, of function with a line color.

There is a parameter that allows to do this, or a plugin? I would love to have that opportunity. It was available in Notepad ++.

I make a screen shot to help understand. Look at the red arrow. I would like something similar. Show a embed red line to all firsts levels functions. enter image description here

exists an extension, plugin or parameter in vcs to do this.? Thank a lot guy for help me .

Otherwise, it would be a great request. :)

Upvotes: 0

Views: 360

Answers (1)

Klas Mellbourn
Klas Mellbourn

Reputation: 44377

This settings achieves something similar.

"editor.renderIndentGuides": true,

Which will create lines that mark indentation:

code with indent guides

Upvotes: 1

Related Questions