From ef188388102b0377ed506b8767536233575965bb Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 19 Aug 2025 21:41:33 +0300 Subject: lsp: reduce eager completions and add throttling\n\n- Defaults: remove ';' and '?' from trigger characters\n- Add min-typed-prefix heuristic for LLM completions (>=2 chars)\n- Add simple time-based throttle between LLM completions (default 900ms)\n- Tests: verify default triggers and skip logic (throttle + min prefix)\n- Config example: update trigger_characters list --- config.json.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config.json.example') diff --git a/config.json.example b/config.json.example index ce091d5..909f3a8 100644 --- a/config.json.example +++ b/config.json.example @@ -5,7 +5,7 @@ "max_context_tokens": 4000, "log_preview_limit": 100, "no_disk_io": true, - "trigger_characters": [".", ":", "/", "_", ";", "?"], + "trigger_characters": [".", ":", "/", "_"], "coding_temperature": 0.2, "provider": "openai", -- cgit v1.2.3