Simplify history selection: remove styled background, use plain arrow marker
This commit is contained in:
@ -214,12 +214,10 @@ func (m HistoryViewModel) View() string {
|
|||||||
entry.Status)
|
entry.Status)
|
||||||
|
|
||||||
if m.cursor == i {
|
if m.cursor == i {
|
||||||
// Highlighted selection - render without background extending to full width
|
// Simple selection marker without styled background
|
||||||
s.WriteString("→ ")
|
s.WriteString(fmt.Sprintf("→ %s\n", line))
|
||||||
s.WriteString(selectedStyle.Render(line))
|
|
||||||
s.WriteString("\n")
|
|
||||||
} else {
|
} else {
|
||||||
s.WriteString(" " + line + "\n")
|
s.WriteString(fmt.Sprintf(" %s\n", line))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user