microsoft terminal split screen code example
Example 1: windows terminal split screen shortcut
# Split current terminal window
Alt Shift = split horizontal
Alt Shift - split vertical
# Jump to other console
Alt <arrow key>
# Resize current terminal window
Alt Shift <arrow key>
# Close terminal window
Ctrl Shift W
Example 2: how to divide command in windows terminal
{ "command": { "action": "splitPane", "split": "vertical" }, "keys": "alt+shift+=" },
{ "command": { "action": "splitPane", "split": "horizontal" }, "keys": "alt+shift+-" },
{ "command": { "action": "splitPane", "split": "auto" }, "keys": "alt+shift+d" }