markLspReady method
void
markLspReady()
Marks the LSP as ready for use. Call this after manually attaching an LSP config that was initialized externally.
Implementation
void markLspReady() {
_lspReady = true;
// Remove all existing listeners to avoid conflicts
_listeners.clear();
_listeners.add(_highlightListener);
}