vscode <matlab-formatter>插件对中文字符报错问题解决

解决方法

  1. 打开插件安装目录
C:\Users\your_name\.vscode\extensions\affenwiesel.matlab-formatter-2.10.41\formatter
  1. 24行左右加入以下三句话
import io

sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf8')
sys.stdin = io.TextIOWrapper(sys.stdin.buffer, encoding='utf8')

你可能感兴趣的:(vscode,ide,编辑器)