Step 130: LSP library API indexing

This commit is contained in:
Bill
2026-02-09 16:46:58 -07:00
parent f88a129a7b
commit 42ee684087
9 changed files with 375 additions and 2 deletions

View File

@@ -190,6 +190,8 @@ int main(int, char**) {
state.lastAutoSave = now;
}
}
state.pollLspMessages();
state.processLibraryIndexResponses();
// Start frame
ImGui_ImplOpenGL3_NewFrame();
@@ -560,6 +562,10 @@ int main(int, char**) {
renderDependencyPanel(state.dependencyPanel, state.workspaceRoot, state.outputLog);
ImGui::PopFont();
ImGui::End();
if (state.dependencyPanel.needsIndex) {
state.requestLibraryIndex();
state.dependencyPanel.needsIndex = false;
}
}
// ---------------------------------------------------------------