Update IDE integration context toggle shortcut to ctrl+G (#6245)

This commit is contained in:
Shreya Keshive
2025-08-14 17:50:20 +00:00
committed by GitHub
parent 2416a80e9c
commit 798c4d1311
7 changed files with 20 additions and 14 deletions

View File

@@ -528,7 +528,7 @@ describe('App UI', () => {
);
currentUnmount = unmount;
await Promise.resolve();
expect(lastFrame()).toContain('1 open file (ctrl+e to view)');
expect(lastFrame()).toContain('1 open file (ctrl+g to view)');
});
it('should not display any files when not available', async () => {
@@ -583,7 +583,7 @@ describe('App UI', () => {
);
currentUnmount = unmount;
await Promise.resolve();
expect(lastFrame()).toContain('3 open files (ctrl+e to view)');
expect(lastFrame()).toContain('3 open files (ctrl+g to view)');
});
it('should display active file and other context', async () => {
@@ -612,7 +612,7 @@ describe('App UI', () => {
currentUnmount = unmount;
await Promise.resolve();
expect(lastFrame()).toContain(
'Using: 1 open file (ctrl+e to view) | 1 GEMINI.md file',
'Using: 1 open file (ctrl+g to view) | 1 GEMINI.md file',
);
});