This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: Start 2 Windows Terminal tabs in the respective folders | |
| wt new-tab -d C:\path\to\folder\one --title Folder1 ; new-tab -d C:\path\to\folder\two --title Folder2 | |
| :: Start 2 VSCode windows in the 2 folders | |
| cd C:\path\to\folder\one | |
| call code . | |
| cd C:\path\to\folder\two | |
| code . |