summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/keyMatchers.test.ts
diff options
context:
space:
mode:
authorShreya Keshive <[email protected]>2025-08-14 17:50:20 +0000
committerGitHub <[email protected]>2025-08-14 17:50:20 +0000
commit798c4d1311dc9e415caf422f5eb6a7d7e65f0a7a (patch)
tree611271ff4a548e374a46a9b0b186ed57339dc1ae /packages/cli/src/ui/keyMatchers.test.ts
parent2416a80e9c1d12718e5cf02db8582cff4c9a5942 (diff)
Update IDE integration context toggle shortcut to ctrl+G (#6245)
Diffstat (limited to 'packages/cli/src/ui/keyMatchers.test.ts')
-rw-r--r--packages/cli/src/ui/keyMatchers.test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/cli/src/ui/keyMatchers.test.ts b/packages/cli/src/ui/keyMatchers.test.ts
index 9c72f2dd..9e2963b9 100644
--- a/packages/cli/src/ui/keyMatchers.test.ts
+++ b/packages/cli/src/ui/keyMatchers.test.ts
@@ -51,7 +51,7 @@ describe('keyMatchers', () => {
[Command.TOGGLE_TOOL_DESCRIPTIONS]: (key: Key) =>
key.ctrl && key.name === 't',
[Command.TOGGLE_IDE_CONTEXT_DETAIL]: (key: Key) =>
- key.ctrl && key.name === 'e',
+ key.ctrl && key.name === 'g',
[Command.QUIT]: (key: Key) => key.ctrl && key.name === 'c',
[Command.EXIT]: (key: Key) => key.ctrl && key.name === 'd',
[Command.SHOW_MORE_LINES]: (key: Key) => key.ctrl && key.name === 's',
@@ -207,8 +207,8 @@ describe('keyMatchers', () => {
},
{
command: Command.TOGGLE_IDE_CONTEXT_DETAIL,
- positive: [createKey('e', { ctrl: true })],
- negative: [createKey('e'), createKey('t', { ctrl: true })],
+ positive: [createKey('g', { ctrl: true })],
+ negative: [createKey('g'), createKey('t', { ctrl: true })],
},
{
command: Command.QUIT,