Boost Your Workflow: VS Code & Terminal Essentials

Published: (December 6, 2025 at 11:34 PM EST)
1 min read
Source: Dev.to

Source: Dev.to

Reopen a Pane

Sometimes you accidentally close the explorer (left pane) or the terminal (bottom pane). You can reopen them with these keyboard shortcuts:

  • Left pane (Explorer): Ctrl + B (Windows) / ⌘ + B (Mac)
  • Bottom pane (Terminal): Ctrl + J (Windows) / ⌘ + J (Mac)

Alternatively, click the hamburger menu (top‑left) → ViewExplorer or Terminal to reopen the pane.

Clear Terminal

  • Mac: ⌘ + K
  • Windows: Ctrl + K

Interrupt Program

  • Ctrl + C

Command Palette

  • Mac: ⌘ + Shift + P
  • Windows: Ctrl + Shift + P

Quick Open File

  • Mac: ⌘ + P
  • Windows: Ctrl + P

Type part of the file name to fuzzy‑search.
Example: typing phco quickly narrows the list to photos_controller.rb.

Rails Console

What does the rails console command do?

(Answer not provided in the original content.)

Why would you use the reload! command in Rails console?

To reload the application’s code without exiting the console.

Back to Blog

Related posts

Read more »

Git-Scope User Guide

Introduction Git‑Scope is a terminal dashboard for your local Git repositories. Stop cd‑ing into folders to check status. Scan your projects and see a real‑tim...