【发布时间】:2019-08-07 11:44:12
【问题描述】:
我已经将我的 sublime3 更新到最新版本,然后我不能使用热键来运行我的 py 文件。这是我的热键配置:
[
{
"caption": "Tmpl: Create python",
"command": "sublime_tmpl",
"keys": ["ctrl+alt+p"], "args": {"type": "python"}
},
{
"keys":["f1"],
"caption": "SublimeREPL: Python",
"command": "run_existing_window_command", "args":
{
"id": "repl_python",
"file": "config/Python/Main.sublime-menu"
}
},
{
"keys":["f2"],
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command", "args":
{
"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"
}
},
]
当我按下 F2 或 F1 时,什么也没有发生。
【问题讨论】:
标签: python-3.x sublimetext3 sublimerepl