Unplanned
Last Updated: 03 Nov 2023 09:23 by Stenly
We could introduce API for customizing the folding region lines and their respective regions. For example, a customization could be hover-coloring of line regions, like in the latest VS:

Unplanned
Last Updated: 23 Dec 2024 11:47 by Martin Ivanov
Add option to enable indent guides (vertical lines) between the code lines in the SyntaxEditor. 
Completed
Last Updated: 21 May 2025 07:52 by ADMIN
Release 2025.2.521 (2025 Q2)
The CSharpTagger matches the following character combination as a multiline comment start - / * (slash and a start with a whitespace between). This causes wrong tags creation in scenarios where the * character is a part of a single line comment. The correct comment start and end should be /* and */.

In the following example, the beginning of the first single line comment is considered a multiline comment start, but since nothing closes it, the entire text is tagged and colored as a comment.

// ***********************************************************************
// some other content here
// some other content here
// ***********************************************************************

public class TestClass
{
}

1 2 3 4