icsharpcode / AvalonEdit

The WPF-based text editor component used in SharpDevelop
http://avalonedit.net/
MIT License
1.86k stars 470 forks source link

Is there `this` in AvalonEdit? #369

Closed NotroDev closed 2 years ago

NotroDev commented 2 years ago

Hey, is this implemented in AvalonEdit? obraz If yes, how can I enable it?

dgrunwald commented 2 years ago

Visual Studio calls these "structure guide lines". AvalonEdit does not have this feature. You could use IBackgroundRenderer do add it yourself, but you'd need your own code for detecting (and efficiently updating) the document structure.

NotroDev commented 2 years ago

Okay, thanks.