search set line position of selected file

This commit is contained in:
Matt Parker
2025-09-25 01:01:45 +10:00
parent f8cd8d18d5
commit a5e6ece9f3
10 changed files with 49 additions and 16 deletions

View File

@@ -0,0 +1,7 @@
namespace SharpIDE.Application.Features.Analysis;
public struct SharpIdeFileLinePosition
{
public required int Line { get; set; }
public required int Column { get; set; }
}