summaryrefslogtreecommitdiff
path: root/internal/hexailsp/run.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-19 21:57:38 +0300
committerPaul Buetow <paul@buetow.org>2025-08-19 21:57:38 +0300
commit9f59e7acd647f9adc0903e9c9655c04495f13a53 (patch)
treeedef52111c7fa87227b3d3d14b3716f458a8e5ed /internal/hexailsp/run.go
parentef188388102b0377ed506b8767536233575965bb (diff)
lsp: replace time throttle with in-flight guard; improve short-prefix heuristic\n\n- Prevent overlapping LLM requests via llmBusy guard\n- Remove time-based throttle and option plumbing\n- Short-prefix heuristic now skips over trailing whitespace and clamps index\n- Add tests for busy guard and trailing-space allowance
Diffstat (limited to 'internal/hexailsp/run.go')
-rw-r--r--internal/hexailsp/run.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/hexailsp/run.go b/internal/hexailsp/run.go
index dd12600..8721a60 100644
--- a/internal/hexailsp/run.go
+++ b/internal/hexailsp/run.go
@@ -107,7 +107,5 @@ func makeServerOptions(cfg appconfig.App, logContext bool, client llm.Client) ls
CodingTemperature: cfg.CodingTemperature,
Client: client,
TriggerCharacters: cfg.TriggerCharacters,
- // Optional; when zero, server uses a sensible default
- MinCompletionIntervalMs: 0,
}
}