mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 04:30:48 +00:00
Introduce a small easter egg. Woof. (#412)
Also changes auto-completion and /help to skip over slash commands that don't contain a description to avoid spoiling the surprise.
This commit is contained in:
parent
9749fcb425
commit
13a6a9a690
6 changed files with 43 additions and 9 deletions
|
|
@ -15,6 +15,7 @@ interface FooterProps {
|
|||
debugMessage: string;
|
||||
cliVersion: string;
|
||||
geminiMdFileCount: number;
|
||||
corgiMode: boolean;
|
||||
}
|
||||
|
||||
export const Footer: React.FC<FooterProps> = ({
|
||||
|
|
@ -23,6 +24,7 @@ export const Footer: React.FC<FooterProps> = ({
|
|||
debugMessage,
|
||||
cliVersion,
|
||||
geminiMdFileCount,
|
||||
corgiMode,
|
||||
}) => (
|
||||
<Box marginTop={1}>
|
||||
<Box>
|
||||
|
|
@ -62,6 +64,16 @@ export const Footer: React.FC<FooterProps> = ({
|
|||
<Box>
|
||||
<Text color={Colors.AccentBlue}> {config.getModel()} </Text>
|
||||
<Text color={Colors.SubtleComment}>| CLI {cliVersion} </Text>
|
||||
{corgiMode && (
|
||||
<Text>
|
||||
<Text color={Colors.SubtleComment}>| </Text>
|
||||
<Text color={Colors.AccentRed}>▼</Text>
|
||||
<Text color={Colors.Foreground}>(´</Text>
|
||||
<Text color={Colors.AccentRed}>ᴥ</Text>
|
||||
<Text color={Colors.Foreground}>`)</Text>
|
||||
<Text color={Colors.AccentRed}>▼ </Text>
|
||||
</Text>
|
||||
)}
|
||||
</Box>
|
||||
</Box>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue