WIP lsp-manager effort 5

This commit is contained in:
2025-07-13 13:47:38 -05:00
parent fd60b42f91
commit 577987244d
3 changed files with 8 additions and 8 deletions

View File

@@ -98,12 +98,12 @@ export class LspManagerComponent {
public registerEditorToLanguageClient() {
this.lspManagerService.registerEditorToLSPClient(this.editor);
/*
this.lspManagerService.setSessionFilePath(
this.editor.session,
this.activeFile.path
);
*/
}
@@ -139,13 +139,17 @@ export class LspManagerComponent {
}
private editorUpdate(message: ServiceMessage) {
if (!message.rawData.activeFile) return;
this.editor.setSession(message.rawData.editor.getSession())
this.activeFile = message.rawData.activeFile;
/*
this.lspManagerService.setSessionFilePath(
this.editor.session,
this.activeFile.path
);
*/
}