Change debug drawer keybinding to F12 (#12171)

This commit is contained in:
Tommaso Sciortino
2025-10-28 12:10:40 -07:00
committed by GitHub
parent 39eb6ed9cc
commit ab1f195508
6 changed files with 8 additions and 9 deletions
+3 -3
View File
@@ -50,7 +50,7 @@ describe('keyMatchers', () => {
[Command.OPEN_EXTERNAL_EDITOR]: (key: Key) =>
key.ctrl && (key.name === 'x' || key.sequence === '\x18'),
[Command.PASTE_CLIPBOARD_IMAGE]: (key: Key) => key.ctrl && key.name === 'v',
[Command.SHOW_ERROR_DETAILS]: (key: Key) => key.ctrl && key.name === 'o',
[Command.SHOW_ERROR_DETAILS]: (key: Key) => key.name === 'f12',
[Command.SHOW_FULL_TODOS]: (key: Key) => key.ctrl && key.name === 't',
[Command.TOGGLE_IDE_CONTEXT_DETAIL]: (key: Key) =>
key.ctrl && key.name === 'g',
@@ -212,8 +212,8 @@ describe('keyMatchers', () => {
// App level bindings
{
command: Command.SHOW_ERROR_DETAILS,
positive: [createKey('o', { ctrl: true })],
negative: [createKey('o'), createKey('e', { ctrl: true })],
positive: [createKey('f12')],
negative: [createKey('o', { ctrl: true }), createKey('f11')],
},
{
command: Command.SHOW_FULL_TODOS,