claude-code - 💡(How to fix) Fix Feature request: configurable statusLine position (below the mode/footer line)

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Currently the custom statusLine (configured via ~/.claude/settings.json) is rendered above the footer line that shows the permission/auto mode hint (e.g. ⏵⏵ auto mode on (shift+tab to cycle) · ← for agents). It would be great to make the position configurable so users can render the statusLine below that mode/footer line instead.

Root Cause

  • Embedding the footer hint into the statusLine command output — not possible because the mode/footer line is rendered separately by the CLI.
  • Multi-line statusLine — does not solve the ordering issue.

Code Example

{
  "statusLine": {
    "type": "command",
    "command": "...",
    "position": "below_footer"   // or "above_footer" (current default)
  }
}
RAW_BUFFERClick to expand / collapse

Summary

Currently the custom statusLine (configured via ~/.claude/settings.json) is rendered above the footer line that shows the permission/auto mode hint (e.g. ⏵⏵ auto mode on (shift+tab to cycle) · ← for agents). It would be great to make the position configurable so users can render the statusLine below that mode/footer line instead.

Motivation

The mode/footer line is system-rendered, fixed-format text. Placing the user-configurable statusLine directly above the prompt input (i.e. below the mode hint) keeps the most contextual/dynamic info closest to where the eye is when typing, and groups the system footer hint with the rest of the chrome at the top of the prompt area.

Proposed UX

Add an option such as:

{
  "statusLine": {
    "type": "command",
    "command": "...",
    "position": "below_footer"   // or "above_footer" (current default)
  }
}

Or a top-level statusLinePosition: "below" | "above".

Alternatives considered

  • Embedding the footer hint into the statusLine command output — not possible because the mode/footer line is rendered separately by the CLI.
  • Multi-line statusLine — does not solve the ordering issue.

Environment

  • Claude Code 2.1.143
  • Windows 11, PowerShell-based statusLine command

Thanks!

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix Feature request: configurable statusLine position (below the mode/footer line)