作者:欣荣_75229 | 来源:互联网 | 2023-09-11 11:21
本来配置好的,昨天突然出现问题了。ctrl + B 后什么都不显示。然后查看了下控制台
1 2 3 4 5 6
| Running node E:\fate\test\test.js
Traceback (most recent call last):
File ".\sublime_plugin.py", line 337, in run_
File ".\exec.py", line 154, in run
File ".\exec.py", line 45, in __init__
UnicodeDecodeError: 'ascii' codec can't decode byte 0xa3 in position 228: ordinal not in range(128) |
这是我的node_build设置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| {
"cmd": ["node", "$file"],
"file_regex": "^[ ]*File "(...*?)", line ([0-9]*)",
"selector": "source.js",
"shell":true,
"encoding": "cp1252",
"windows":
{
"cmd": ["node", "$file"]
},
"linux":
{
"cmd": ["killall node; node", "$file"]
}
} |
试了下
也不行。。。。网上各种方法都试了下都不行