I want to use terminal script to open both of my working folders using VS code at once. I’m currently using this
@echo off
start code "path to folder 1"
start code "path to folder 2"
While this does open both folders in VS code at once it also open 2 terminals. Is there anyway for me stop those terminals from opening and only have VS code windows open?