$ recombobulate _
home / tips / jump-back-into-your-most-recent-conversation-with-continue
0

Jump Back Into Your Most Recent Conversation with --continue

bagwaa @bagwaa · Mar 26, 2026 · Shortcuts
jump-back-into-your-most-recent-conversation-with-continue

The --continue flag (short: -c) is the fastest way to pick up exactly where you left off, without needing to remember a session ID or name.

claude --continue
# or the short form:
claude -c

Unlike --resume, which requires a name or UUID, --continue simply loads the most recent session for your current working directory. Return to a project, run claude -c, and you're back in the last thread instantly.

You can combine it with a prompt to continue and immediately run a query:

claude -c "Now add tests for those functions"

It also pairs with --print for non-interactive automation:

claude -c -p "Check for any type errors I missed"

This makes --continue ideal for shell aliases. Adding alias cc="claude -c" to your .zshrc or .bashrc means resuming a session is just two keystrokes away.

One thing to note: --continue picks up the most recent session by timestamp, not by project. If you've recently worked in another directory, use --resume with the session name to be precise.

Make alias cc="claude -c" your most-used Claude Code shortcut.


via Claude Code CLI Reference

~/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
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
0
Use /model to Switch Between Claude Models Mid-Session

Type /model mid-session to switch from Opus to Sonnet, saving tokens on execution-heavy work without losing output quality.

bagwaa @bagwaa · 3 hours ago