VScode设置使用内置终端调试并解决中文乱码问题
将
launch.json
中的"console": "externalTerminal",
改为"console": "integratedTerminal",
打开
VScode
的setting.json
并加入以下内容:1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"terminal.integrated.profiles.windows": {
"Command Prompt": {
"path": "C:\\Windows\\System32\\cmd.exe",
"args": ["-NoExit", "/K", "chcp 65001"]
},
"PowerShell": {
"source": "PowerShell",
"args": ["-NoExit", "/C", "chcp 65001"]
}
},
"terminal.integrated.defaultProfile.windows": "Command Prompt"
}保存重启终端即可
VScode设置使用内置终端调试并解决中文乱码问题
https://hualinli.github.io/2022/11/03/VScode设置使用内置终端调试并解决中文乱码问题/