mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-21 19:40:40 -07:00
Ctrl-O (#17617)
This commit is contained in:
@@ -48,7 +48,7 @@ describe('ShowMoreLines', () => {
|
||||
} as NonNullable<ReturnType<typeof useOverflowState>>);
|
||||
mockUseStreamingContext.mockReturnValue(streamingState);
|
||||
const { lastFrame } = render(<ShowMoreLines constrainHeight={true} />);
|
||||
expect(lastFrame()).toContain('Press ctrl-s to show more lines');
|
||||
expect(lastFrame()).toContain('Press ctrl-o to show more lines');
|
||||
},
|
||||
);
|
||||
});
|
||||
|
||||
@@ -33,7 +33,7 @@ export const ShowMoreLines = ({ constrainHeight }: ShowMoreLinesProps) => {
|
||||
return (
|
||||
<Box>
|
||||
<Text color={theme.text.secondary} wrap="truncate">
|
||||
Press ctrl-s to show more lines
|
||||
Press ctrl-o to show more lines
|
||||
</Text>
|
||||
</Box>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user