Remove ctrl-t binding for /mcp commands (#11372)

This commit is contained in:
Tommaso Sciortino
2025-10-17 09:42:09 -07:00
committed by GitHub
parent 0ded546a09
commit 795e5134c7
14 changed files with 5 additions and 52 deletions
-2
View File
@@ -46,7 +46,6 @@ export enum Command {
// App level bindings
SHOW_ERROR_DETAILS = 'showErrorDetails',
TOGGLE_TOOL_DESCRIPTIONS = 'toggleToolDescriptions',
TOGGLE_IDE_CONTEXT_DETAIL = 'toggleIDEContextDetail',
TOGGLE_MARKDOWN = 'toggleMarkdown',
QUIT = 'quit',
@@ -157,7 +156,6 @@ export const defaultKeyBindings: KeyBindingConfig = {
// App level bindings
[Command.SHOW_ERROR_DETAILS]: [{ key: 'o', ctrl: true }],
[Command.TOGGLE_TOOL_DESCRIPTIONS]: [{ key: 't', ctrl: true }],
[Command.TOGGLE_IDE_CONTEXT_DETAIL]: [{ key: 'g', ctrl: true }],
[Command.TOGGLE_MARKDOWN]: [{ key: 'm', command: true }],
[Command.QUIT]: [{ key: 'c', ctrl: true }],