From 7324b6c6b59548722d45736ad76ba7aa97214152 Mon Sep 17 00:00:00 2001 From: Sisyphus Date: Tue, 30 Dec 2025 00:10:14 +0900 Subject: [PATCH] docs: fix experimental config key typo in README examples (#329) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix dcp_on_compaction_failure → dcp_for_compaction in JSON examples to match actual schema and code implementation. Cherry-picked from #325 (merged to master instead of dev) Co-authored-by: sisyphus-dev-ai --- README.ja.md | 2 +- README.ko.md | 2 +- README.md | 2 +- README.zh-cn.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.ja.md b/README.ja.md index ad1d7a5..a109035 100644 --- a/README.ja.md +++ b/README.ja.md @@ -923,7 +923,7 @@ OpenCode でサポートされるすべての LSP 構成およびカスタム設 "aggressive_truncation": true, "auto_resume": true, "truncate_all_tool_outputs": false, - "dcp_on_compaction_failure": true + "dcp_for_compaction": true } } ``` diff --git a/README.ko.md b/README.ko.md index 37ecaec..125bb5e 100644 --- a/README.ko.md +++ b/README.ko.md @@ -920,7 +920,7 @@ OpenCode 에서 지원하는 모든 LSP 구성 및 커스텀 설정 (opencode.js "aggressive_truncation": true, "auto_resume": true, "truncate_all_tool_outputs": false, - "dcp_on_compaction_failure": true + "dcp_for_compaction": true } } ``` diff --git a/README.md b/README.md index 1695a8d..414097a 100644 --- a/README.md +++ b/README.md @@ -959,7 +959,7 @@ Opt-in experimental features that may change or be removed in future versions. U "aggressive_truncation": true, "auto_resume": true, "truncate_all_tool_outputs": false, - "dcp_on_compaction_failure": true + "dcp_for_compaction": true } } ``` diff --git a/README.zh-cn.md b/README.zh-cn.md index 2664aae..1ab23b4 100644 --- a/README.zh-cn.md +++ b/README.zh-cn.md @@ -927,7 +927,7 @@ Oh My OpenCode 送你重构工具(重命名、代码操作)。 "aggressive_truncation": true, "auto_resume": true, "truncate_all_tool_outputs": false, - "dcp_on_compaction_failure": true + "dcp_for_compaction": true } } ```