Reputation: 1808
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.
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
Reputation: 44377
This settings achieves something similar.
"editor.renderIndentGuides": true,
Which will create lines that mark indentation:
Upvotes: 1