Freeive

claude-code·Published 2026.06.01

claude -c: Pick Up Yesterday's Conversation (continue)

Closing the window doesn't erase your conversation. A single claude -c picks up right where you stopped in that folder. The per-folder history principle, e

When you've closed your laptop mid-task or accidentally shut the terminal window, have you ever had that sinking thought, "Wait, did I just lose the whole conversation?" Thankfully, no. A single command lets you pick up right from where you stopped.

Definition (What It Is)

claude -c is a command that continues the conversation you were just having (-c = continue). Because conversation history is saved per folder, even if you closed the window, typing claude -c again in that folder naturally picks up from where you stopped. You don't have to explain the situation all over again.

The key here is that "saved per folder" part. A conversation in folder A and a conversation in folder B are remembered separately and don't mix with each other.

How to Use It (By Difficulty)

Before you start: -c continues "the most recent conversation in the current folder." So you have to first move (cd folder-path) into the folder you were working in yesterday, then type it, for the conversation you want to be continued. If you type it in a different folder, that folder's other conversation gets continued, so be careful.

Basic — Continue the most recent conversation

claude -c

This continues the most recent conversation you had in this folder. When you run it, a chat window opens with the previous conversation alive, so you can immediately pick up with something like "okay, finish that thing from earlier."

Applied — Continue but get only the answer (automation)

claude -c -p "남은 타입 오류 확인"

-p is an option that prints only the answer and exits without opening a chat window (-p = print). So this command "inherits the context of the past conversation, but gets only the result and exits, with no chat window." It's useful for automatic processing via a script.

Advanced — Continue each folder separately

cd ~/proj/A
claude -c
cd ~/proj/B
claude -c

This is an example showing that project A and project B each continue separately (~ is the home folder; on Windows it's C:\Users\username\, so you'd write something like cd C:\Users\username\proj\A). Even as you move between multiple projects, each folder's conversation doesn't mix, so as long as the folder is right, you can return to that work's context anytime.

Common Pitfalls

-c only continues "the most recent one." If you've had several conversations in the same folder, it may continue the wrong recent conversation instead of the one you want. If you want to call up a specific conversation, use claude -r (call it up by name or ID).

Real-World Example

There's a case where someone closed their laptop mid blog-automation work last night, and in the morning resumed in the exact same context with a single claude -c in the same folder. Since you don't have to re-explain "where did I leave off yesterday," it saves a lot of time.

More Ways to Use It

  • Since each folder remembers its recent conversation separately, you can naturally continue each one even as you move between multiple projects.
  • Don't try to finish long tasks in one go—you can split them up, breaking off and continuing with -c, and the context stays intact.

How Others Use It

Wrap-Up

claude -c is the "continue" button. Just remember that conversations are saved per folder, and you can return to the folder you were working in and restart from where you stopped with a single claude -c. When you need to pick a specific conversation, think of claude -r.

Reference: Claude Code v2.1.154 (2026.05)

#Claude Code#ClaudeCode#claude-c#AI Coding#Vibe Coding#Developer

Comments

Comments 0

Checking sign-in status…

Loading comments…

Recent

More notes.