$ recombobulate _
home / tips / use-rewind-to-undo-bad-turns-without-wasting-tokens
0

Use /rewind to Undo Bad Turns Without Wasting Tokens

bagwaa @bagwaa · Mar 26, 2026 · Shortcuts
use-rewind-to-undo-bad-turns-without-wasting-tokens

When Claude heads down the wrong path, your instinct might be to explain what went wrong and ask it to try again. But that means Claude processes all the bad output plus your correction, burning tokens on context that shouldn't exist.

Instead, rewind:

> /rewind

This restores both the conversation and your code to a previous checkpoint. Claude never sees the bad turn, so you don't pay for it on subsequent messages.

You can also double-tap Escape to trigger the same thing. Press Escape once to stop Claude mid-response, then press it again to rewind to the last checkpoint.

This is particularly valuable during complex refactoring or multi-step implementations. If Claude makes a wrong architectural choice three steps in, rewinding gets you back to the decision point without carrying forward thousands of tokens of incorrect code and explanations.

For maximum efficiency, combine /rewind with plan mode. Press Shift+Tab to enter plan mode, let Claude propose an approach, and only proceed with implementation once you've approved the plan. If the plan is wrong, rewind is cheap. If the implementation goes sideways, you can rewind back to the approved plan.

Don't argue with a bad turn. Rewind it and start fresh.


via Claude Code Docs — Costs

~/recombobulate $ tip --comments --count=0

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
0
Ask Side Questions Without Polluting Context with /btw

The /btw command lets you ask quick side questions that are answered immediately but never added to the conversation history.

bagwaa @bagwaa · 1 hour ago
0
Jump Back Into Your Most Recent Conversation with --continue

The --continue flag loads your most recent conversation instantly, no session ID required.

bagwaa @bagwaa · 1 hour ago
0
Give Claude Visual Context by Pasting Images from Any Source

Claude Code accepts images from any clipboard source — screenshots, Slack messages, browser windows, and design mockups all paste directly into your prompt.

bagwaa @bagwaa · 3 hours ago