sublimeREPL运行python

background

厌倦了在terminal下不断的type(唔懒到家了),想在sublime里运行python

ref

https://www.sublimetext.com/3(下载sublime 3)
https://packagecontrol.io/installation(下载sublime package control-管理各种插件的)
https://sublimerepl.readthedocs.io/en/latest/(下载sublimeREPL-可以在sublime里运行各种语言的插件)

评测

使用起来还是要点很多下不爽,设置了一个hotkey,方法如下:
进入Sublime Text - preference - browse packages - sublimerepl - conflig - python - default.sublime-commands,查看想设置的快捷键的command,如:


sublimeREPL运行python_第1张图片
e.g.Run the current file

复制command + args,进入Sublime Text - preference - key bindings,在sublime - keymap - user 的[]中添加

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

(keys可以根据自己的需要调整,但不要和default的冲突)
以后运行python就只需要按两个键啦!!!在代码量小小的时候用sublime真是美滋滋。

你可能感兴趣的:(sublimeREPL运行python)