mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-16 14:27:24 -07:00
fix(cli): update JetBrains terminal warning messaging and only show in alternate buffer mode
This commit is contained in:
@@ -105,7 +105,11 @@ export async function getUserStartupWarnings(
|
||||
const warnings = results.filter((w): w is StartupWarning => w !== null);
|
||||
|
||||
if (settings.ui?.showCompatibilityWarnings !== false) {
|
||||
warnings.push(...getCompatibilityWarnings());
|
||||
warnings.push(
|
||||
...getCompatibilityWarnings({
|
||||
useAlternateBuffer: settings.ui?.useAlternateBuffer !== false,
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
return warnings;
|
||||
|
||||
Reference in New Issue
Block a user