mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-25 04:24:51 -07:00
fix(core): Default skipNextSpeakerCheck to true when the setting is not manually set (#8295)
This commit is contained in:
@@ -392,7 +392,7 @@ export class Config {
|
|||||||
this.trustedFolder = params.trustedFolder;
|
this.trustedFolder = params.trustedFolder;
|
||||||
this.useRipgrep = params.useRipgrep ?? false;
|
this.useRipgrep = params.useRipgrep ?? false;
|
||||||
this.shouldUseNodePtyShell = params.shouldUseNodePtyShell ?? false;
|
this.shouldUseNodePtyShell = params.shouldUseNodePtyShell ?? false;
|
||||||
this.skipNextSpeakerCheck = params.skipNextSpeakerCheck ?? false;
|
this.skipNextSpeakerCheck = params.skipNextSpeakerCheck ?? true;
|
||||||
this.shellExecutionConfig = {
|
this.shellExecutionConfig = {
|
||||||
terminalWidth: params.shellExecutionConfig?.terminalWidth ?? 80,
|
terminalWidth: params.shellExecutionConfig?.terminalWidth ?? 80,
|
||||||
terminalHeight: params.shellExecutionConfig?.terminalHeight ?? 24,
|
terminalHeight: params.shellExecutionConfig?.terminalHeight ?? 24,
|
||||||
|
|||||||
Reference in New Issue
Block a user