在SUBlimeREPL的Sublime Text 3中我们制作热键:系统偏好设置→键盘→快捷方式→应用程序快捷方式:
{ "keys": ["ctrl+b"], "command": "run_existing_window_command", "args":
{
"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"
}}
要使用快捷方式,我们首先需要保存我们的脚本:Ctrl + s。 我的问题:是否可以首先保存python脚本,然后只使用CTRL + B运行脚本(以避免使用Ctrl +)?
我的代码是这样的,但它不起作用:
{ "keys": ["ctrl+b"], "command": "save" },
{"keys": ["ctrl+b"], "command": "run_existing_window_command", "args":
{
"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"
}}