Skip to content

Statusline MEMORY icons lack spacing before values #899

@infinitelyloopy-bt

Description

@infinitelyloopy-bt

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 value

Fix

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions