From 97e5e8c918995c7003a52d1a5624cd3c0d1fc4de Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Mon, 29 Dec 2025 15:26:58 +0100 Subject: [PATCH] fix(coding-agent): use smaller bullet marker with space for active path --- .../src/modes/interactive/components/tree-selector.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/coding-agent/src/modes/interactive/components/tree-selector.ts b/packages/coding-agent/src/modes/interactive/components/tree-selector.ts index 9f143f8f..7be8fa18 100644 --- a/packages/coding-agent/src/modes/interactive/components/tree-selector.ts +++ b/packages/coding-agent/src/modes/interactive/components/tree-selector.ts @@ -365,7 +365,7 @@ class TreeList implements Component { // Active path marker - shown right before the entry text const isOnActivePath = this.activePathIds.has(entry.id); - const pathMarker = isOnActivePath ? theme.fg("accent", "●") : ""; + const pathMarker = isOnActivePath ? theme.fg("accent", "• ") : ""; const label = flatNode.node.label ? theme.fg("warning", `[${flatNode.node.label}] `) : ""; const content = this.getEntryDisplayText(flatNode.node, isSelected);