|
|
@@ -357,6 +357,8 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
|
|
|
terminalShellIntegrationTimeout,
|
|
|
terminalCommandDelay,
|
|
|
terminalZshClearEolMark,
|
|
|
+ terminalZshOhMy,
|
|
|
+ terminalZshP10k,
|
|
|
terminalPowershellCounter,
|
|
|
}) => {
|
|
|
setSoundEnabled(soundEnabled ?? false)
|
|
|
@@ -365,6 +367,8 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
|
|
|
)
|
|
|
Terminal.setCommandDelay(terminalCommandDelay ?? 0)
|
|
|
Terminal.setTerminalZshClearEolMark(terminalZshClearEolMark ?? true)
|
|
|
+ Terminal.setTerminalZshOhMy(terminalZshOhMy ?? false)
|
|
|
+ Terminal.setTerminalZshP10k(terminalZshP10k ?? false)
|
|
|
Terminal.setPowershellCounter(terminalPowershellCounter ?? false)
|
|
|
},
|
|
|
)
|
|
|
@@ -1213,6 +1217,8 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
|
|
|
terminalCommandDelay,
|
|
|
terminalPowershellCounter,
|
|
|
terminalZshClearEolMark,
|
|
|
+ terminalZshOhMy,
|
|
|
+ terminalZshP10k,
|
|
|
fuzzyMatchThreshold,
|
|
|
mcpEnabled,
|
|
|
enableMcpServerCreation,
|
|
|
@@ -1283,6 +1289,8 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
|
|
|
terminalCommandDelay: terminalCommandDelay ?? 0,
|
|
|
terminalPowershellCounter: terminalPowershellCounter ?? false,
|
|
|
terminalZshClearEolMark: terminalZshClearEolMark ?? true,
|
|
|
+ terminalZshOhMy: terminalZshOhMy ?? false,
|
|
|
+ terminalZshP10k: terminalZshP10k ?? false,
|
|
|
fuzzyMatchThreshold: fuzzyMatchThreshold ?? 1.0,
|
|
|
mcpEnabled: mcpEnabled ?? true,
|
|
|
enableMcpServerCreation: enableMcpServerCreation ?? true,
|
|
|
@@ -1372,6 +1380,8 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
|
|
|
terminalCommandDelay: stateValues.terminalCommandDelay ?? 0,
|
|
|
terminalPowershellCounter: stateValues.terminalPowershellCounter ?? false,
|
|
|
terminalZshClearEolMark: stateValues.terminalZshClearEolMark ?? true,
|
|
|
+ terminalZshOhMy: stateValues.terminalZshOhMy ?? false,
|
|
|
+ terminalZshP10k: stateValues.terminalZshP10k ?? false,
|
|
|
mode: stateValues.mode ?? defaultModeSlug,
|
|
|
language: stateValues.language ?? formatLanguage(vscode.env.language),
|
|
|
mcpEnabled: stateValues.mcpEnabled ?? true,
|