Fix sticky completion helper dismissal behavior

This commit is contained in:
Bill
2026-02-16 18:07:33 -07:00
parent 5881f926b4
commit 2d4c29d403
3 changed files with 40 additions and 2 deletions

View File

@@ -208,6 +208,7 @@ struct EditorState {
double symbolsLastChange = 0.0;
bool completionPending = false;
bool completionVisible = false;
bool completionDismissed = false;
int completionSelected = 0;
double completionLastChange = 0.0;
bool lspChangePending = false;
@@ -601,4 +602,3 @@ struct NullLSPTransport : public LSPTransport {
bool isOpen() const override { return false; }
void close() override {}
};