MCPcopy Index your code
hub / github.com/Acode-Foundation/Acode / scheduleLspForFile

Function scheduleLspForFile

src/lib/editorManager.js:1422–1428  ·  view source on GitHub ↗
(file)

Source from the content-addressed store, hash-verified

1420 }
1421
1422 function scheduleLspForFile(file) {
1423 const fileId = file?.id;
1424 window.setTimeout(() => {
1425 if (!fileId || manager.activeFile?.id !== fileId) return;
1426 void configureLspForFile(file);
1427 }, 80);
1428 }
1429
1430 function applyCurrentEditorOptions(file, { forceOptions = false } = {}) {
1431 touchSelectionController?.onSessionChanged();

Callers 1

applyFileToEditorFunction · 0.85

Calls 1

configureLspForFileFunction · 0.85

Tested by

no test coverage detected