From 30fc1f3cad197f8e51577398d86cdeafddf03a25 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 18 Jan 2026 16:59:30 +0000 Subject: [PATCH] chore(keybindings): update Claude Code keybindings and add extension reference - Renamed section for Claude Code in keybindings.json. - Added new keybindings for disabling the native console and focusing/blurring Claude Code. - Included a reference to the Claude Code extension in the comments. --- keybindings.json | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/keybindings.json b/keybindings.json index 974f858..bf70567 100644 --- a/keybindings.json +++ b/keybindings.json @@ -39,10 +39,13 @@ }, // // =========================================================================== - // MARK: Claude Code (Terminal) + // MARK: Claude Code // =========================================================================== + // Extension: + // - https://marketplace.visualstudio.com/items?itemName=anthropic.claude-code // - { + // + { // Enable new lines in terminal. "key": "shift+enter", "command": "workbench.action.terminal.sendSequence", "args": { @@ -50,6 +53,21 @@ }, "when": "terminalFocus" }, + { // Disable default open native console keybinding. + "key": "shift+cmd+c", + "command": "-workbench.action.terminal.openNativeConsole", + "when": "!terminalFocus" + }, + { // Blur Claude Code. + "key": "shift+cmd+c", + "command": "claude-vscode.blur", + "when": "!config.claudeCode.useTerminal && !editorTextFocus" + }, + { // Focus Claude Code. + "key": "shift+cmd+c", + "command": "claude-vscode.focus", + "when": "editorTextFocus && !config.claudeCode.useTerminal" + }, // // =========================================================================== // MARK: Window