qwen-code/packages/cli/src/ui/utils/itermDetection.tsx

20 lines
437 B
TypeScript

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import React from 'react';
import { Box, Text } from 'ink';
export const ITermDetectionWarning: React.FC = () => {
if (process.env.TERM_PROGRAM !== 'iTerm.app') {
return null; // Don't render anything if not in iTerm
}
return (
<Box marginTop={1}>
<Text dimColor>Note: Flickering may occur in iTerm.</Text>
</Box>
);
};