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

@@ -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,