diff --git a/README.md b/README.md index 65e8edd..8efeab5 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,14 @@ Ditch the command line and experience Claude Code like never before. This extens 🖥️ **No Terminal Required** - Beautiful chat interface replaces command-line interactions ⏪ **Restore Checkpoints** - Undo changes and restore code to any previous state 💾 **Conversation History** - Automatic conversation history and session management +🧠 **Plan and Thinking modes** - Plan First and configurable Thinking modes for better results ⚡ **Instant Access** - Claude Code integrated directly into VS Code 🎨 **VS Code Native** - Seamlessly matches your editor's theme and design 📁 **Smart File Context** - Reference any file with simple @ mentions 🛑 **Full Control** - Start, stop, and manage AI processes with ease 🤖 **Model Selection** - Choose between Opus, Sonnet, or Default based on your needs +⚡ **Slash Commands** - Type "/" for instant access to all Claude Code commands +🐧 **WSL Support** - Full Windows Subsystem for Linux integration and compatibility ![Claude Code Chat Cut](https://github.com/user-attachments/assets/d4ded28f-a4ed-4862-9766-c1ff89947775) diff --git a/src/ui.ts b/src/ui.ts index 7013d3b..5cdf53b 100644 --- a/src/ui.ts +++ b/src/ui.ts @@ -1493,7 +1493,9 @@ const html = ` if (sessionStatus && newSessionBtn) { // sessionInfo.style.display = 'none'; sessionStatus.style.display = 'none'; - newSessionBtn.style.display = 'none'; + + // Always show new session + newSessionBtn.style.display = 'block'; // Keep history button visible - don't hide it if (historyBtn) historyBtn.style.display = 'block'; }