claude-code - 💡(How to fix) Fix Feature request: configurable spinner phrase rotation speed [1 comments, 2 participants]

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…
GitHub stats
anthropics/claude-code#46837Fetched 2026-04-12 13:31:45
View on GitHub
Comments
1
Participants
2
Timeline
3
Reactions
0
Timeline (top)
labeled ×2commented ×1

I'd love a setting to control how quickly spinner verb phrases rotate. The spinnerVerbs setting already lets us customize which phrases appear, but the rotation speed is fixed internally.

Root Cause

I'd love a setting to control how quickly spinner verb phrases rotate. The spinnerVerbs setting already lets us customize which phrases appear, but the rotation speed is fixed internally.

Code Example

{
  "spinnerVerbInterval": 1500
}
RAW_BUFFERClick to expand / collapse

Summary

I'd love a setting to control how quickly spinner verb phrases rotate. The spinnerVerbs setting already lets us customize which phrases appear, but the rotation speed is fixed internally.

Use case

I have a short custom verb list, and at the current rotation speed I end up re-reading the same phrase for a while before it changes. Being able to speed up the cycle would make the experience feel more dynamic — especially for short lists where you'd otherwise stare at the same phrase for several seconds.

This is a different angle from #23418 (which was closed as not planned): the core ask there was a general configurability knob. My argument is more specifically about short verb lists feeling stale at the default interval. When you only have 3–5 custom verbs, the fixed timing that works fine for the default longer list doesn't feel right.

Proposal

A spinnerVerbInterval setting in settings.json, value in milliseconds:

{
  "spinnerVerbInterval": 1500
}
  • Default to the current interval so nothing changes for existing users.
  • A reasonable minimum (e.g. 200ms) to prevent flickering.

This fits naturally alongside the existing spinnerVerbs, spinnerTipsEnabled, and prefersReducedMotion settings.

Alternatives considered

  • Nesting it inside the spinnerVerbs object — works but changes the existing schema shape unnecessarily.
  • Auto-scaling interval based on list length — clever but opaque; an explicit setting is simpler and more predictable.

extent analysis

TL;DR

Implement a spinnerVerbInterval setting in settings.json to control the rotation speed of spinner verb phrases.

Guidance

  • Consider adding a spinnerVerbInterval setting with a default value to maintain existing behavior and allow users to customize the rotation speed.
  • Define a reasonable minimum interval (e.g., 200ms) to prevent flickering.
  • Place the new setting alongside existing related settings, such as spinnerVerbs and prefersReducedMotion, for consistency.
  • Evaluate the proposed setting's impact on user experience, particularly for short custom verb lists.

Example

{
  "spinnerVerbInterval": 1000
}

This example sets the spinner verb rotation interval to 1 second (1000 milliseconds).

Notes

The proposed solution assumes that the existing spinnerVerbs setting is functional and that adding a new setting will not introduce significant complexity or conflicts.

Recommendation

Apply workaround by implementing the proposed spinnerVerbInterval setting, as it provides a straightforward and predictable solution for customizing the spinner verb rotation speed.

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