Python IDE in Sublime

(最近换了电脑,然后忘了把 ST 的配置搬过来,所以重新折腾了一遍 Sublime 中的 Python 环境配置)

以下插件均通过 Package Control 安装。

SublimeREPL

快捷键绑定(至 F5):

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

SublimeLinter

SublimeLinter-pyflakes

依赖:
pip install pyflakes

SublimeLinter-pep8

依赖:
pip install pep8

原文地址:https://www.cnblogs.com/lsdsjy/p/python-ide-in-st.html