把sublime text打造成python互動終端

LTQblog發表於2017-06-15

轉載請註明出處:http://blog.csdn.net/qq_22186119/article/details/73275091

把sublime text打造成python互動終端

為何要這麼做?
python自帶的IDLE有點難用,檢視上一個命令還需要alt + P,真彆扭,自動提示還得按一下tab,真麻煩。
對於一個MATLAB直男癌患者,當然還是上箭頭順手。

crtl + shift + p: install package: sublimeREPL

設定快捷鍵F1

Preferences - Key Bindings-User

    {"keys":["f1"],
    "caption": "SublimeREPL: Python",
    "command": "run_existing_window_command", "args":
    {"id": "repl_python",
    "file": "config/Python/Main.sublime-menu"}}

設定預設python版本

Sublime Text 3\Packages\SublimeREPL\config\Python中開啟Main.sublime-menu
將其中的

"cmd": ["python", "-i", "-u"],

更改為

"cmd": ["python35", "-i", "-u"],

我用python3.5

效果

參考:

https://www.zhihu.com/question/22904994

相關文章