Skip to content
Merged
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
7 changes: 6 additions & 1 deletion internal/tui/conversation_execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,13 @@ func (a *App) executionRailCells() []string {
}
plain, _ := truncateExact(label, labelWidth)
prefix := " "
if context.Key == a.conv.execution.CursorKey && a.conv.execution.Focused {
if a.conv.execution.Focused && context.Key == a.conv.execution.CursorKey {
// Cursor indicator when the rail is focused.
prefix = "> "
} else if context.Key == a.conv.execution.ActiveKey {
// Active context indicator when the rail is NOT focused —
// shows which context's conversation is currently displayed.
prefix = "▸ "
}
cell := prefix + executionStatusGlyph(context.Status) + " " + plain
if context.Key == a.conv.execution.ActiveKey {
Expand Down
Loading