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
15 changes: 15 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ app-installation-detection = { path = "crates/app-installation-detection" }
asset_cache = { path = "crates/asset_cache" }
asset_macro = { path = "crates/asset_macro" }
channel_versions = { path = "crates/channel_versions", default-features = false }
claude_code = { path = "crates/claude_code" }
command = { path = "crates/command" }
command-signatures-v2 = { path = "crates/command-signatures-v2" }
computer_use = { path = "crates/computer_use" }
Expand Down
1 change: 1 addition & 0 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ cfg-if.workspace = true
channel_versions.workspace = true
chrono.workspace = true
clap.workspace = true
claude_code.workspace = true
command = { workspace = true }
command-corrections.workspace = true
command-signatures-v2 = { workspace = true, optional = true }
Expand Down
4 changes: 4 additions & 0 deletions app/src/app_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -891,6 +891,9 @@ pub enum LeftPanelDisplayedTab {
GlobalSearch,
WarpDrive,
Shortcuts,
// twarp 07: persisted identity of the Claude Code tab so it can be the
// restored active view across restarts.
ClaudeCode,
ConversationListView,
}

Expand All @@ -901,6 +904,7 @@ impl From<ToolPanelView> for LeftPanelDisplayedTab {
ToolPanelView::GlobalSearch { .. } => LeftPanelDisplayedTab::GlobalSearch,
ToolPanelView::WarpDrive => LeftPanelDisplayedTab::WarpDrive,
ToolPanelView::Shortcuts => LeftPanelDisplayedTab::Shortcuts,
ToolPanelView::ClaudeCode => LeftPanelDisplayedTab::ClaudeCode,
ToolPanelView::ConversationListView => LeftPanelDisplayedTab::ConversationListView,
}
}
Expand Down
Loading
Loading