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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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',
);
});