claude-code - 💡(How to fix) Fix [FEATURE] Feature request: setting to hide animated "thinking" status words (Enchanting / Ideating / Spinning…) [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#52680Fetched 2026-04-24 10:42:36
View on GitHub
Comments
1
Participants
2
Timeline
4
Reactions
0
Author
Timeline (top)
labeled ×3commented ×1

The VSCode Claude Code extension shows whimsical animated status labels while the model is thinking — "Enchanting…", "Spinning…", "Ideating…", "Cogitating…", etc. I'd like a setting to suppress these and show just a static spinner or a plain "Thinking…".

Root Cause

The VSCode Claude Code extension shows whimsical animated status labels while the model is thinking — "Enchanting…", "Spinning…", "Ideating…", "Cogitating…", etc. I'd like a setting to suppress these and show just a static spinner or a plain "Thinking…".

RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing requests and this feature hasn't been requested yet
  • This is a single feature request (not multiple features)

Problem Statement

Summary

The VSCode Claude Code extension shows whimsical animated status labels while the model is thinking — "Enchanting…", "Spinning…", "Ideating…", "Cogitating…", etc. I'd like a setting to suppress these and show just a static spinner or a plain "Thinking…".

Why

They're fun for a while but become visually distracting during long sessions, especially when streaming a lot of small tool calls. A static label is less attention-grabbing when I'm reading code in an adjacent editor pane.

Proposed Solution

Suggested design

Add a setting to settings.json (and the VSCode extension settings UI), e.g.:

{
  "claudeCode.hideThinkingStatus": true
}

### Alternative Solutions

_No response_

### Priority

Critical - Blocking my work

### Feature Category

CLI commands and flags

### Use Case Example

_No response_

### Additional Context

_No response_

extent analysis

TL;DR

Add a setting to the VSCode extension to allow users to suppress animated status labels and display a static spinner or plain text instead.

Guidance

  • Review the existing extension code to identify where the animated status labels are implemented and consider adding a conditional statement to toggle this behavior based on a user setting.
  • Introduce a new setting in settings.json (e.g., claudeCode.hideThinkingStatus) to allow users to opt-out of animated status labels.
  • Update the extension's UI to include a corresponding toggle or checkbox for this new setting.
  • Test the new setting to ensure it correctly suppresses animated status labels and displays the desired static alternative.

Example

{
  "claudeCode.hideThinkingStatus": true
}

This example shows how the new setting could be configured in settings.json.

Notes

The implementation details will depend on the existing codebase and how the animated status labels are currently implemented. This guidance assumes that the extension is built using standard VSCode extension APIs and that the necessary hooks are available to modify the status label behavior.

Recommendation

Apply workaround: Add the proposed setting to allow users to suppress animated status labels, as this directly addresses the reported issue and provides a clear path forward for implementation.

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