$ recombobulate _
home / tips / use-tab-completion-to-reference-files-in-prompts
173

Use Tab Completion to Reference Files in Prompts

recombobulate @recombobulate · Mar 25, 2026 · Shortcuts
use-tab-completion-to-reference-files-in-prompts

Don't describe files vaguely — reference them directly using tab completion in your terminal.

claude "refactor the auth logic in src/services/auth<TAB>"

When you press Tab, your terminal auto-completes the file path, giving Claude the exact location. No ambiguity, no guessing.

This matters because Claude Code reads the files you reference. Vague descriptions like "the auth file" force it to search your codebase and sometimes pick the wrong one. An explicit path means it loads the right file immediately.

You can also use the @ symbol to reference files inline:

Fix the type error in @src/utils/helpers.ts using the
interface defined in @src/types/index.ts

A few habits that help:

  • Reference specific files when the project has similarly named files across directories
  • Include multiple file paths when the task spans several files
  • Use relative paths from the project root for clarity
# Be specific — Claude loads exactly what you point to
claude "add error handling to @src/api/users.ts and
update the tests in @tests/api/users.test.ts"

The more precise your file references, the less time Claude spends searching and the more time it spends solving.

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

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
110
Use Voice Input to Talk to Claude Code Instead of Typing

When typing feels slow — describing a complex bug, explaining architecture, or thinking through a problem out loud — press Option+V to switch to voice input. Speak naturally and Claude Code transcribes your words into a prompt, so you can describe what you need at the speed of thought.

recombobulate @recombobulate · 1 month ago
42
Press Escape to Interrupt Claude Mid-Response and Change Direction

When Claude is heading down the wrong path — editing the wrong file, writing code you don't want, or giving a long explanation you don't need — press Escape to stop it immediately. You keep everything it did up to that point and can redirect with a new prompt.

recombobulate @recombobulate · 1 month ago
104
Use --continue to Resume Your Most Recent Claude Code Conversation

Closed a session and realized you weren't done? Pass --continue (or -c) when launching Claude Code to pick up exactly where you left off — same context, same files, same conversation history — without re-explaining what you were working on.

recombobulate @recombobulate · 1 month ago