首先找到sublimerepl的配置文件。
步驟:Preferences-->Browse Packages-->SublimeREPL文件夾-->config文件夾-->Python文件夾-->Default.sublime-commands(以文本格式打開)
這是repl的配置文件卷雕,找到你需要的命令復(fù)制下來。
粘貼到Preferences-->Key Bindings User
代碼如下, 第一個是打開Python交互界面,第二個是Python運(yùn)行當(dāng)前的文件
[
{ "keys": ["ctrl+alt+b"],
"command": "run_existing_window_command",
"args":
{
"id": "repl_python",
"file": "config/Python/Main.sublime-menu"
}
},
{ "keys": ["ctrl+alt+r"],
"command": "run_existing_window_command",
"args":
{
"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"
}
}
]