Skip to content

Commit 2a3d815

Browse files
cpcloudcursoragent
andcommitted
fix(ui): use accent bullet instead of "(active)" in model list
The `/models` command was showing model names with "(active)" suffix which was noisy and cluttered the list. Changed to use an accent-colored bullet (•) before the active model name instead of a text suffix. This is: - More visually distinct (color + symbol) - Less cluttered (no trailing text) - Consistent with the app's visual language Example: Before: qwen3:8b (active) After: • qwen3:8b Closes #165 Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent b4c1b87 commit 2a3d815

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

internal/app/chat.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,9 @@ func (m *Model) handleModelsListMsg(msg modelsListMsg) {
388388
var b strings.Builder
389389
for _, name := range msg.Models {
390390
if name == current {
391-
b.WriteString(" " + name + " (active)\n")
391+
// Use accent-colored bullet to indicate active model.
392+
marker := lipgloss.NewStyle().Foreground(accent).Render("• ")
393+
b.WriteString(marker + name + "\n")
392394
} else {
393395
b.WriteString(" " + name + "\n")
394396
}

0 commit comments

Comments
 (0)