Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,8 @@ If you want to revert these changes, just click "Restore Checkpoint" to go back
| `@` | Open file picker |
| `/` | Open slash commands modal |

The default `Ctrl+Shift+C` (`Cmd+Shift+C` on Mac) doesn't fire while a terminal has focus, so it no longer clashes with the terminal's "Copy Selection" shortcut. To rebind or disable it, open **Preferences: Open Keyboard Shortcuts** (`Ctrl+K Ctrl+S`) and search for `Claude Code Chat: Open Claude Code Chat`.

### WSL Configuration (Windows Users)
If you're using Claude Code through WSL (Windows Subsystem for Linux), you can configure the extension to use WSL:

Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@
{
"command": "claude-code-chat.openChat",
"key": "ctrl+shift+c",
"mac": "cmd+shift+c"
"mac": "cmd+shift+c",
"when": "!terminalFocus"
}
],
"menus": {
Expand Down Expand Up @@ -208,6 +209,11 @@
"type": "boolean",
"default": false,
"description": "Enable the local router to convert OpenAI format to Anthropic format. Required for providers that use OpenAI-compatible APIs."
},
"claudeCodeChat.ui.compactMode": {
"type": "boolean",
"default": false,
"description": "Reduce paddings, margins and font sizes for a denser chat layout."
}
}
}
Expand Down
Loading