sublime repl快捷键设置

定制快捷键:preference->Key Bindings-User

[
  {
      "keys":["f5"],
      "caption": "SublimeREPL: Python - RUN current file",
      "command": "run_existing_window_command", "args":
      {"id": "repl_python_run","file": "config/Python/Main.sublime-menu"}
  },
  {
      "keys": ["f6"],
      "caption": "SublimeREPL: Python - IPython",
      "command": "run_existing_window_command","args":
      {"id": "repl_python_ipython","file":"config/python/Main.sublime-menu"}
  }
]

使用F5:运行当前文件;使用 F6:调出ipython命令行

原文地址:https://www.cnblogs.com/super-super-/p/7401557.html