From 727920c2068884e1da43f763e7ae6e8bb2c7397a Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Thu, 19 Mar 2026 11:56:24 -0700 Subject: [PATCH] =?UTF-8?q?Change=20review=20status=20icon=20from=20?= =?UTF-8?q?=E2=A6=BF=20to=20=E2=8A=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Improve visual distinction from the saved status icon (●) --- src/commands/list.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/list.ts b/src/commands/list.ts index 59ba127..b21e208 100644 --- a/src/commands/list.ts +++ b/src/commands/list.ts @@ -74,7 +74,7 @@ export async function action(opts: { json?: boolean }) { const styleDefs: [string, string, string][] = [ ["idle", dim, "◯"], ["active", cyan, "◎"], ["dirty", yellow, "◐"], - ["saved", green, "●"], ["review", magenta, "⦿"], + ["saved", green, "●"], ["review", magenta, "⊛"], ] const styles = Object.fromEntries( styleDefs.map(([k, c, ch]) => [k, { icon: `${c}${ch}${reset}`, color: c }]) @@ -94,7 +94,7 @@ export async function action(opts: { json?: boolean }) { console.log(`${icon} ${bc}${s.branch.padEnd(branchWidth)}${reset} ${dim}${truncated}${reset}`) } - console.log(`\n${dim}◯ idle${reset} · ${cyan}◎ active${reset} · ${yellow}◐ unsaved${reset} · ${green}● saved${reset} · ${magenta}⦿ review${reset}`) + console.log(`\n${dim}◯ idle${reset} · ${cyan}◎ active${reset} · ${yellow}◐ unsaved${reset} · ${green}● saved${reset} · ${magenta}⊛ review${reset}`) if ((await vm.status()) !== "running") { console.log(`\n${red}VM is not running.${reset}`)