@@ -63,9 +63,7 @@ import { LanguageSettings } from "./LanguageSettings"
6363import { About } from "./About"
6464import { Section } from "./Section"
6565import { cn } from "@/lib/utils"
66- // Removed: import { settingsTabsContainer, settingsTabList, settingsTabTrigger, settingsTabTriggerActive } from "./styles"
6766
68- // Inserted settings* definitions (originally lines 87-96 from styles.ts)
6967export const settingsTabsContainer = "flex flex-1 overflow-hidden [&.narrow_.tab-label]:hidden"
7068export const settingsTabList =
7169 "w-48 data-[compact=true]:w-12 flex-shrink-0 flex flex-col overflow-y-auto overflow-x-hidden border-r border-vscode-sideBar-background"
@@ -263,7 +261,7 @@ const SettingsView = forwardRef<SettingsViewRef, SettingsViewProps>(({ onDone, t
263261 vscode . postMessage ( { type : "screenshotQuality" , value : screenshotQuality ?? 75 } )
264262 vscode . postMessage ( { type : "terminalOutputLineLimit" , value : terminalOutputLineLimit ?? 500 } )
265263 vscode . postMessage ( { type : "terminalShellIntegrationTimeout" , value : terminalShellIntegrationTimeout } )
266- vscode . postMessage ( { type : "terminalShellIntegrationDisabled" , bool : terminalShellIntegrationDisabled } ) // Added from upstream
264+ vscode . postMessage ( { type : "terminalShellIntegrationDisabled" , bool : terminalShellIntegrationDisabled } )
267265 vscode . postMessage ( { type : "terminalCommandDelay" , value : terminalCommandDelay } )
268266 vscode . postMessage ( { type : "terminalPowershellCounter" , bool : terminalPowershellCounter } )
269267 vscode . postMessage ( { type : "terminalZshClearEolMark" , bool : terminalZshClearEolMark } )
@@ -614,7 +612,7 @@ const SettingsView = forwardRef<SettingsViewRef, SettingsViewProps>(({ onDone, t
614612 < TerminalSettings
615613 terminalOutputLineLimit = { terminalOutputLineLimit }
616614 terminalShellIntegrationTimeout = { terminalShellIntegrationTimeout }
617- terminalShellIntegrationDisabled = { terminalShellIntegrationDisabled } // Added from upstream
615+ terminalShellIntegrationDisabled = { terminalShellIntegrationDisabled }
618616 terminalCommandDelay = { terminalCommandDelay }
619617 terminalPowershellCounter = { terminalPowershellCounter }
620618 terminalZshClearEolMark = { terminalZshClearEolMark }
0 commit comments