skip to Main Content

When opening a directory in VS Code and clicking on a PowerShell script, the terminal is maximized instead of splitting the screen between the Editor and Terminal tab.

Can I somehow control this setting so that I always see the Editor and Terminal tab?

Current behavior

enter image description here

Desired behavior

enter image description here

VS Code information

Version: 1.94.2 (system setup)
Commit: 384ff7382de624fb94dbaf6da11977bba1ecd427
Date: 2024-10-09T16:08:44.566Z
Electron: 30.5.1
ElectronBuildId: 10262041
Chromium: 124.0.6367.243
Node.js: 20.16.0
V8: 12.4.254.20-electron.0
OS: Windows_NT x64 10.0.22631

2

Answers


  1. Open the settings with CTRL,, search for terminal default location and change that from editor to view.

    Login or Signup to reply.
  2. 1.Open Command Palette: Press Ctrl + Shift + P.

    2.Access User Settings: Type Preferences: Open User Settings (JSON) and open the settings.json file.

    3.Modify Settings: Add or ensure the following lines are included:

    "terminal.integrated.defaultLocation": "bottom",
    "terminal.integrated.shell.windows": "C:WindowsSystem32WindowsPowerShellv1.0powershell.exe"

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search