sublime text terminus build cancel 什么都不做
sublime text terminus build cancel does nothing
标题说明了一切,build cancel 什么都不做,command pallet 什么都不做,keybind 什么都不做。我已经从 prefrences 中更改了键绑定:
{ "keys": ["ctrl+alt+c"], "command": "cancel_build" },
我已经添加了我自己的 Python 终端构建:
{
"target": "terminus_exec",
"cancel": "terminus_cancel_build",
"focus": true,
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"env": {"PYTHONIOENCODING": "utf-8"},
"windows": {
"cmd": ["py", "-u", "$file"],
},
"variants":
[
{
"name": "Syntax Check",
"cmd": ["python3", "-m", "py_compile", "$file"],
"windows": {
"cmd": ["py", "-m", "py_compile", "$file"],
}
}
]
}
(我对 sublime text 和编码都很陌生)在此先感谢。
编辑:我正在使用 Windows 10,在 python 安装程序中我选择了添加到 PATH 选项并且更改键绑定没有任何作用。我用这个作为我的测试文件:
while True:
print("Stop it!")
甚至没有问题,我的代码 运行 在我的系统上太难了,取消需要很长时间。 (支持@OdatNurd 找到它)
标题说明了一切,build cancel 什么都不做,command pallet 什么都不做,keybind 什么都不做。我已经从 prefrences 中更改了键绑定:
{ "keys": ["ctrl+alt+c"], "command": "cancel_build" },
我已经添加了我自己的 Python 终端构建:
{
"target": "terminus_exec",
"cancel": "terminus_cancel_build",
"focus": true,
"cmd": ["python3", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"env": {"PYTHONIOENCODING": "utf-8"},
"windows": {
"cmd": ["py", "-u", "$file"],
},
"variants":
[
{
"name": "Syntax Check",
"cmd": ["python3", "-m", "py_compile", "$file"],
"windows": {
"cmd": ["py", "-m", "py_compile", "$file"],
}
}
]
}
(我对 sublime text 和编码都很陌生)在此先感谢。 编辑:我正在使用 Windows 10,在 python 安装程序中我选择了添加到 PATH 选项并且更改键绑定没有任何作用。我用这个作为我的测试文件:
while True:
print("Stop it!")
甚至没有问题,我的代码 运行 在我的系统上太难了,取消需要很长时间。 (支持@OdatNurd 找到它)