-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Statusline MEMORY icons lack spacing before values #899
Copy link
Copy link
Description
Description
In the MEMORY line of the statusline (statusline-command.sh), the icons 📁, ✦, ⊕, and ◇ are directly concatenated to their numeric values with no space between them. This affects all 4 display modes (nano, micro, mini, normal).
Current rendering:
◎ MEMORY: 📁478 Work │ ✦379 Ratings │ ⊕8 Sessions │ ◇0 Research
Expected rendering:
◎ MEMORY: 📁 478 Work │ ✦ 379 Ratings │ ⊕ 8 Sessions │ ◇ 0 Research
Root Cause
In .claude/statusline-command.sh (lines 566–583), the printf patterns place the icon character immediately before the ANSI reset/color codes and the variable, with no space:
printf "${LEARN_WORK}📁${RESET}${SLATE_300}${work_count}..."
# ^^^ no space between icon and valueFix
Add a single space after each icon character (📁, ✦, ⊕, ◇) before the ${RESET} in all 4 display mode blocks. Pure spacing change — no logic or color modifications.
Affected Lines
- Line 566 (nano mode)
- Line 569 (micro mode)
- Lines 573–576 (mini mode)
- Lines 580–583 (normal mode)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels