WIP context menu added; upgraded ace-linters; integrated auto session register

This commit is contained in:
2025-07-26 00:43:45 -05:00
parent 90c8c9b3ee
commit 822d778008
13 changed files with 134 additions and 33 deletions

View File

@@ -101,12 +101,6 @@ export class LspManagerComponent {
public registerEditorToLanguageClient() {
this.lspManagerService.registerEditorToLSPClient(this.editor);
/*
this.lspManagerService.setSessionFilePath(
this.editor.session,
this.activeFile.path
);
*/
}
@@ -148,13 +142,7 @@ export class LspManagerComponent {
this.editor.setSession(message.rawData.editor.getSession())
this.activeFile = message.rawData.activeFile;
/*
this.lspManagerService.setSessionFilePath(
this.editor.session,
this.activeFile.path
);
*/
this.lspManagerService.registerSession(this.editor);
}
private closeFile(message: ServiceMessage) {