Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I have multiple Powershell Consoles in one window?

So, now I have many open apps, often 3-4 powershell consoles. I'm able to order the powershell windows to watch them together (top left, top right, bottom left, bottom right).

So this means that if I switch to another app, when I switch back I have to restore all multiple powershell windows to see them all again.

What I want is, to create only one 'shared window' for many powershell, because when I need one, I need all of them to see.

Is there a way to do this?

like image 809
Twois Avatar asked Sep 18 '18 10:09

Twois


3 Answers

Just to add more details about Windows Terminal approach:

  1. Open a Windows Terminal
  2. Type Alt+Shift+= or Alt+Shift+- to open a new Pane in the same tab
  3. Type Shift+Ctrl+W to close the current Pane

enter image description here

If you need more details or modify the settings, go to next page Panes in Windows Terminal

like image 115
Carlos Avatar answered Oct 23 '22 22:10

Carlos


ConEmu has this option.

You can also configure it to open as much consoles as you want when it starts.

enter image description here

ConEmu website

Enjoy!

like image 20
Daniel Avatar answered Oct 23 '22 22:10

Daniel


VSCode can have Multiple Terminals which is the closest to this I've seen, quoted from documentaion:

You can create multiple terminals open to different locations and easily navigate between them. Terminal instances can be added by hitting the plus icon on the top-right of the TERMINAL panel or by triggering the Ctrl+Shift+` command. This creates another entry in the dropdown list that can be used to switch between them.

enter image description here

You can also split the terminal by triggering the Ctrl+\ command or via the right click context menu

enter image description here

like image 34
henrycarteruk Avatar answered Oct 23 '22 23:10

henrycarteruk