current caret position on tab change
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace SharpIDE.Application.Features.Editor;
|
||||
|
||||
/// <summary>
|
||||
/// Used by code editor windows to report the current caret position for display elsewhere in the UI
|
||||
/// </summary>
|
||||
public class EditorCaretPositionService
|
||||
{
|
||||
public (int, int) CaretPosition { get; set; } = (1, 1);
|
||||
}
|
||||
Reference in New Issue
Block a user