selection char and line break count

This commit is contained in:
Matt Parker
2025-12-18 11:54:17 +10:00
parent a1cb792375
commit bc5468cd64
4 changed files with 47 additions and 0 deletions

View File

@@ -6,4 +6,5 @@
public class EditorCaretPositionService
{
public (int, int) CaretPosition { get; set; } = (1, 1);
public (int characters, int lineBreaks)? SelectionInfo { get; set; }
}