summaryrefslogtreecommitdiff
path: root/config.json.example
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-19 22:11:22 +0300
committerPaul Buetow <paul@buetow.org>2025-08-19 22:11:22 +0300
commit8fa3c76907c3e99e75c5828d9b5642646c81205c (patch)
tree75cf350ab4c01000603f7843c6427bc10710c68c /config.json.example
parent9f59e7acd647f9adc0903e9c9655c04495f13a53 (diff)
lsp: include space in trigger characters and allow space-triggered completions\n\n- Defaults now include space (" ") in trigger list\n- Prefix heuristic treats space as structural trigger (no min-prefix required)\n- README and config example updated\n- Tests: add coverage for space trigger
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 909f3a8..a2e46d1 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",