mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-26 13:04:49 -07:00
23 lines
889 B
TypeScript
23 lines
889 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { useConfig } from '../contexts/ConfigContext.js';
|
|
import type { Config } from '@google/gemini-cli-core';
|
|
|
|
// This method is intentionally misleading while we migrate.
|
|
// Once getUseTerminalBuffer() is always enabled we will refactor to remove
|
|
// all instances of this method making it the only path.
|
|
// Right now this is convenient as it allows us to special case terminalBuffer
|
|
// rendering like we special case alternateBuffer rendering.
|
|
export const isAlternateBufferEnabled = (config: Config): boolean =>
|
|
config.getUseAlternateBuffer() || config.getUseTerminalBuffer();
|
|
|
|
// This is read from Config so that the UI reads the same value per application session
|
|
export const useAlternateBuffer = (): boolean => {
|
|
const config = useConfig();
|
|
return isAlternateBufferEnabled(config);
|
|
};
|