From cc3b81a1ad2c91b34b081838658ef6eb3f87e071 Mon Sep 17 00:00:00 2001 From: Edwin Hernandez Date: Wed, 1 Jul 2026 11:49:41 -0500 Subject: [PATCH] feat(vscode): bind cmd+l to provider-agnostic chat open Rebind cmd+l from the Claude Code extension sidebar (claude-vscode.sidebar.open) to the built-in workbench.action.chat.open, which opens the chat view regardless of provider and focuses the GitHub Copilot chat when Copilot is the active provider. The older provider specific ids (workbench.action.openChat.copilot) are deprecated. Fixes DOT-49 --- home/Library/Application Support/Code/User/keybindings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/Library/Application Support/Code/User/keybindings.json b/home/Library/Application Support/Code/User/keybindings.json index da1c00f..0366337 100644 --- a/home/Library/Application Support/Code/User/keybindings.json +++ b/home/Library/Application Support/Code/User/keybindings.json @@ -6,6 +6,6 @@ }, { "key": "cmd+l", - "command": "claude-vscode.sidebar.open" + "command": "workbench.action.chat.open" } ]