【小技巧】vs code里的中文乱码

      /* 修改终端编码 */
        "terminal.integrated.profiles.windows": {
            "PowerShell": {
              "source": "PowerShell", //一般推荐使用powershell
              "overrideName": true,
              "args": ["-NoExit", "/c", "chcp 65001"], /* chcp改变编码命令 65001表示utf-8 */
              "icon": "terminal-powershell",
              "env": {
                "TEST_VAR": "value"
              }
            }
          },
        "terminal.integrated.defaultProfile.windows": "PowerShell",

参考文章 

(40条消息) 三、Visual Studio Code终端中文乱码怎么办?_李尔阳的博客-CSDN博客

猜你喜欢

转载自blog.csdn.net/dualvencsdn/article/details/130419375