mirror of
https://github.com/andrepimenta/claude-code-chat.git
synced 2025-12-08 22:49:42 +00:00
Add settings UI with WSL configuration support
- Add settings button to webview UI - Implement settings panel with WSL bridge configuration - Add real-time settings updates via VS Code configuration API - Support for WSL distro, node path, and claude path configuration - Improve user experience by eliminating manual config file editing
This commit is contained in:
21
README.md
21
README.md
@@ -160,6 +160,27 @@ If you want to revert these changes, just click "Restore Checkpoint" to go back
|
||||
| `Enter` | Send message |
|
||||
| `@` | Open file picker |
|
||||
|
||||
### WSL Configuration (Windows Users)
|
||||
If you're using Claude Code through WSL (Windows Subsystem for Linux), you can configure the extension to use WSL:
|
||||
|
||||
1. Open VS Code Settings (`Ctrl+,` or `Cmd+,`)
|
||||
2. Search for "Claude Code Chat"
|
||||
3. Configure these settings:
|
||||
- **Claude Code Chat: WSL Enabled** - Enable WSL integration
|
||||
- **Claude Code Chat: WSL Distro** - Your WSL distribution name (e.g., `Ubuntu`, `Debian`)
|
||||
- **Claude Code Chat: WSL Node Path** - Path to Node.js in WSL (default: `/usr/bin/node`)
|
||||
- **Claude Code Chat: WSL Claude Path** - Path to Claude in WSL (default: `/usr/local/bin/claude`)
|
||||
|
||||
Example configuration in `settings.json`:
|
||||
```json
|
||||
{
|
||||
"claudeCodeChat.wsl.enabled": true,
|
||||
"claudeCodeChat.wsl.distro": "Ubuntu",
|
||||
"claudeCodeChat.wsl.nodePath": "/usr/bin/node",
|
||||
"claudeCodeChat.wsl.claudePath": "/usr/local/bin/claude"
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 🎯 **Pro Tips & Tricks**
|
||||
|
||||
Reference in New Issue
Block a user