diff options
| author | adamdotdevin <[email protected]> | 2025-07-16 14:33:57 -0500 |
|---|---|---|
| committer | adamdotdevin <[email protected]> | 2025-07-16 14:33:57 -0500 |
| commit | 9d869f784c4b66c30824debc32ce338977dc4922 (patch) | |
| tree | e7eba768bc5021c83a462c2ecd0da40611b9a2e3 | |
| parent | bd244f73afd9a2972017b97d58ec60df1166eb4c (diff) | |
| download | opencode-9d869f784c4b66c30824debc32ce338977dc4922.tar.gz opencode-9d869f784c4b66c30824debc32ce338977dc4922.zip | |
fix(tui): expand edit calls
| -rw-r--r-- | packages/opencode/src/config/config.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index 87f325f17..e0961b7b2 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -31,6 +31,9 @@ export namespace Config { const os = await import("os") result.username = os.userInfo().username } + if (!result.layout) { + result.layout = "auto" + } log.info("loaded", result) |
