csharpdeeb25a2 | 1 | using CascadeIDE.Features.Editor.Application.Monaco; |
| 2 | |
| 3 | namespace CascadeIDE.ViewModels; |
| 4 | |
| 5 | /// <summary>Monaco editor navigation service wiring for MainWindow.</summary> |
| 6 | public partial class MainWindowViewModel |
| 7 | { |
| 8 | public IEditorNavigationService EditorNavigation { get; private set; } = null!; |
| 9 | |
| 10 | private void InitializeEditorNavigation() => |
| 11 | EditorNavigation = new EditorNavigationService(this); |
| 12 | } |
| 13 | |
View only · write via MCP/CIDE