How to make a text editor in Visual Studio look like this?

I found this project, a structured editor , representing a prototype of experimental structured code.

I like this idea and want it in Visual Studio, what options do I have?

Structured editor

+4
source share
1 answer

This material can be done with Visual Studio extensions. As far as I know, there is no Visual Studio extension that does exactly what you want, but the Indentation is similar.

the source code for the indent guides is available , so if you are so inclined, you can change this to display gradients instead of lines.

+2
source

Source: https://habr.com/ru/post/1380366/


All Articles