We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f9391 commit 18b74aaCopy full SHA for 18b74aa
packages/opencode/src/config/config.ts
@@ -135,6 +135,11 @@ export namespace Config {
135
result.share = "auto"
136
}
137
138
+ // Handle migration from autoshare to share field
139
+ if (result.autoshare === true && !result.share) {
140
+ result.share = "auto"
141
+ }
142
+
143
if (!result.keybinds) result.keybinds = Info.shape.keybinds.parse({})
144
145
// Apply flag overrides for compaction settings
0 commit comments