[Feature Request] Add a setting to hide the weekly usage/rate-limit indicator above the prompt input
Preflight Checklist
- [x] I have searched existing requests and this feature hasn't been requested yet
- [x] This is a single feature request (not multiple features)
Problem Statement
The prompt input area in the Claude Code VSCode extension always displays a weekly
usage indicator (e.g. "you've used 28% of your weekly limit, reset in ~X days")
directly above where I type.
I find this persistent reminder distracting during focused work — it sits in my
primary line of sight every time I compose a prompt, and I don't need to see it
continuously. I'd rather check my usage on demand.
There is currently no way to hide it: /config has no relevant key, statusLine
only controls the bottom status bar, and /usage only opens the detailed dialog
without affecting the persistent indicator.
Proposed Solution
Add a boolean setting to permanently hide the weekly usage indicator above the
prompt input. For example:
- A
/configkey:hideWeeklyUsageIndicator=true|false(default: false) - Or an equivalent settings.json entry / environment variable
Default remains "shown" so existing behavior is unchanged. Users who don't want
the persistent indicator can turn it off and still check usage anytime via /usage.
Alternative Solutions
- Checked all documented
/configkeys (progressBar, tips, verbose, turnDuration,
recap, promptSuggestionEnabled) — none control this line.
statusLinecustomization only affects the bottom status bar, not the line
above the prompt.
/usageshows details but does not hide the persistent indicator.
No working workaround exists today short of ignoring it.
Priority
Low - Nice to have
Feature Category
Other
Use Case Example
- I open the Claude Code extension in VSCode and start a coding session.
- Every time I focus the prompt to type, the weekly usage line ("28% of your
weekly limit...") is displayed right above my cursor.
- With this feature, I would set
hideWeeklyUsageIndicator=trueonce. - The indicator disappears, giving me a clean prompt area, and I still run
/usage whenever I actually want to check my limits.
Additional Context
- Environment: Claude Code VSCode extension (anthropic.claude-code) v2.1.216,
macOS (Darwin arm64).
- The value appears to come from
rate_limits.seven_day.used_percentagereturned
by the server and is rendered unconditionally by the client.