mirror of
https://github.com/andrepimenta/claude-code-chat.git
synced 2025-12-13 13:49:47 +00:00
Always show new session button
This commit is contained in:
@@ -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
|
🖥️ **No Terminal Required** - Beautiful chat interface replaces command-line interactions
|
||||||
⏪ **Restore Checkpoints** - Undo changes and restore code to any previous state
|
⏪ **Restore Checkpoints** - Undo changes and restore code to any previous state
|
||||||
💾 **Conversation History** - Automatic conversation history and session management
|
💾 **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
|
⚡ **Instant Access** - Claude Code integrated directly into VS Code
|
||||||
🎨 **VS Code Native** - Seamlessly matches your editor's theme and design
|
🎨 **VS Code Native** - Seamlessly matches your editor's theme and design
|
||||||
📁 **Smart File Context** - Reference any file with simple @ mentions
|
📁 **Smart File Context** - Reference any file with simple @ mentions
|
||||||
🛑 **Full Control** - Start, stop, and manage AI processes with ease
|
🛑 **Full Control** - Start, stop, and manage AI processes with ease
|
||||||
🤖 **Model Selection** - Choose between Opus, Sonnet, or Default based on your needs
|
🤖 **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
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|||||||
@@ -1493,7 +1493,9 @@ const html = `<!DOCTYPE html>
|
|||||||
if (sessionStatus && newSessionBtn) {
|
if (sessionStatus && newSessionBtn) {
|
||||||
// sessionInfo.style.display = 'none';
|
// sessionInfo.style.display = 'none';
|
||||||
sessionStatus.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
|
// Keep history button visible - don't hide it
|
||||||
if (historyBtn) historyBtn.style.display = 'block';
|
if (historyBtn) historyBtn.style.display = 'block';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user