vscode的命令终端,命令执行显示超过一定行数后,会崩溃,并弹出 conhost.exe - 系统错误
:
系统在此应用程序中检测到基于堆栈的缓冲区溢出。溢出可能允许恶意用户获得此应用程序的控制。
解决: 左下角 设置
-> 功能
-> 终端
-> Scrollback
控制终端在其缓冲区中保留的最大行数
{
"workbench.colorTheme": "Quiet Light",
"workbench.editor.enablePreview": false,
"terminal.integrated.defaultProfile.windows": "Command Prompt",
......
"terminal.integrated.scrollback": 100000
}
设置vscode命令行其缓冲区中保留的最大行数 https://blog.csdn.net/wzp20092009/article/details/118327205