Make useFullWidth the default. (#12911)

This commit is contained in:
Jacob Richman
2025-11-11 16:14:08 -08:00
committed by GitHub
parent 2e2b066713
commit 2abc288c52
7 changed files with 42 additions and 42 deletions

View File

@@ -26,7 +26,7 @@ export const calculateMainAreaWidth = (
terminalWidth: number,
settings: LoadedSettings,
): number => {
if (settings.merged.ui?.useFullWidth) {
if (settings.merged.ui?.useFullWidth !== false) {
if (settings.merged.ui?.useAlternateBuffer) {
return terminalWidth - 1;
}