VSCode 启动禁止terminal显示上次执行记录
时间: 2023-06-16 08:04:07 浏览: 136
vscode-windows-terminal:VS Code与Windows Terminal集成
你可以在 VSCode 中打开设置(快捷键为 Ctrl + ,),然后搜索 "terminal.integrated.shellArgs.windows"(如果你是在 Windows 上使用 VSCode)或 "terminal.integrated.shellArgs.osx"(如果你是在 macOS 上使用 VSCode),将其设置为:
```json
"terminal.integrated.shellArgs.windows": ["-NoProfile"],
"terminal.integrated.shellArgs.osx": ["-l"]
```
这将禁止在终端中显示上次执行的记录。
阅读全文