summaryrefslogtreecommitdiff
path: root/config.json.example
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-19 21:41:33 +0300
committerPaul Buetow <paul@buetow.org>2025-08-19 21:41:33 +0300
commitef188388102b0377ed506b8767536233575965bb (patch)
tree837fa426d8f2cc65a1bc144630f968bf2cab5c1a /config.json.example
parent526e40a54ba325a6f75f35817799614d7b5997b7 (diff)
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
Diffstat (limited to 'config.json.example')
-rw-r--r--config.json.example2
1 files changed, 1 insertions, 1 deletions
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",