Improve key binding names and descriptions (#16529)

This commit is contained in:
Tommaso Sciortino
2026-01-13 12:07:55 -08:00
committed by GitHub
parent 91fcca3b1c
commit e931ebe581
5 changed files with 31 additions and 36 deletions
+2 -2
View File
@@ -289,7 +289,7 @@ describe('keyMatchers', () => {
negative: [createKey('t'), createKey('e', { ctrl: true })],
},
{
command: Command.TOGGLE_IDE_CONTEXT_DETAIL,
command: Command.SHOW_IDE_CONTEXT_DETAIL,
positive: [createKey('g', { ctrl: true })],
negative: [createKey('g'), createKey('t', { ctrl: true })],
},
@@ -336,7 +336,7 @@ describe('keyMatchers', () => {
negative: [createKey('return'), createKey('space')],
},
{
command: Command.TOGGLE_SHELL_INPUT_FOCUS_IN,
command: Command.FOCUS_SHELL_INPUT,
positive: [createKey('tab')],
negative: [createKey('f', { ctrl: true }), createKey('f')],
},