Back to tips
Rename Terminal Tabs
Organize terminals by renaming tabs via right-click or double-click
#terminal
#organization
#workflow
Keep your terminal sessions organized by renaming terminal tabs. Give each terminal a meaningful name to quickly identify different tasks like “server”, “tests”, or “git”.
How to Rename
Right-click method:
- Right-click on any terminal tab
- Select “Rename” from context menu
- Enter new name and press Enter
Double-click method:
- Double-click on the terminal tab title
- Enter new name and press Enter
Why This Matters
Organization: Distinguish between multiple terminal sessions at a glance.
Workflow clarity: Name terminals by their purpose (e.g., “npm run dev”, “docker logs”).
Context switching: Quickly find the right terminal when juggling multiple tasks.
Example Use Cases
- Name terminals by project component: “frontend”, “backend”, “database”
- Label by task type: “tests”, “build”, “deploy”
- Identify long-running processes: “dev server”, “file watcher”
Terminal tab names persist within your session, making it easier to maintain context across your workflow.