VS代码(Windows 10)
我想从ps1脚本中实现什么:
我创建了一个Powershell脚本,该脚本从默认打开的终端运行。现在,我想从第一个终端打开一个新的终端标签。
我可以从终端启动vs代码命令快捷方式(Ctrl +`)还是vs代码命令选项板(Ctrl + Shift + P)吗?
答案 0 :(得分:1)
这是我解决问题的方式。
我创建了VS Code extension,并使用了extension API。
// Create a terminal Window
const term = vscode.window.createTerminal("terminal_name");
// Write any powershell command
term.sendText("cd C:\\path\\to\\follow\\");
// Any other command
term.sendText("yarn start");
// Create a second terminal
const secTerm = vscode.window.createTerminal("second_terminal_name");
secTerm.sendText("cd C:\\another\\path\\to\\follow\\");
secTerm.sendText("py manage.py runserver");
// and so one