想在sublime里要python shell那种交互或者run module F5 F5 F5下这种效果的话,还是挺容易实现的,windows下的:
1. 打开Sublime text 3 安装package control
Sublime Text 3 安装Package Control

2. 安装 SublimeREPL

Ctrl+shift+p 键入 install packages

稍等片刻后 键入 SublimeREPL 安装即可

通过选项Tools->SublimeREPL->Python就可以看到效果了

3. 键位绑定

当然每次通过Tools->SublimeREPL->Python这样的方式比较繁琐

将这样的操作和一个按键如F1绑定后,就会方便很多啦

e.g.打开Preferences->Key Bindings-User,复制一下代码:

[{"keys":["f1"],
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command", "args":
{"id": "repl_python_run","file": "config/Python/Main.sublime-menu"}
}]
Ctrl+s下就好了~
 
 
http://www.oschina.net/translate/setting-up-sublime-text-for-python-development

相关文章:

  • 2021-07-02
  • 2021-03-31
  • 2021-08-08
  • 2022-12-23
  • 2021-11-19
  • 2021-08-24
  • 2021-10-26
  • 2021-07-02
猜你喜欢
  • 2021-07-22
  • 2021-08-29
  • 2021-11-19
  • 2021-08-09
  • 2022-01-22
  • 2021-07-26
相关资源
相似解决方案