回复内容:
anaconda也不错 自动补齐部分和sumlimejedi一样,也使用了jedi。
codeintel:自动补全+成员/方法提示(强烈推荐)sublimerepl:用于运行和调试一些需要交互的程序(e.g. 使用了input()的程序)bracket highlighter:括号匹配及高亮sublimelinter:代码pep8格式检查
正常来说,command+b 运行python 程序的时候,有raw_input() 的时候sublime会报错,sublimerepl 可以通过python-run current file来实现,而且这个也可以定义快捷键:具体看我百度空间:【我的python 笔记】
强烈推荐sumlimejedi插件,代码补全智能感知超级好用https://github.com/srusskih/sublimejedi
目前我安装了以下几个,andypython, python标准库帮助提示插件 ,就是当你不知道怎么写的时候,提供用法sublimelinter,sublimerope, 智能代码插件
anaconda不多说
试过几个sublime直接运行python的插件,都不理想然后自己写了个小玩意
#-*-coding:utf-8-*-
import sublime, sublime_plugin, os
class pythonruncommand(sublime_plugin.textcommand):
def run(self, edit):
self.view.run_command(“save”)
cmd = “@echo off & python ” + self.view.file_name().encode(‘gb2312’) + ” & pause”
os.system(cmd)
gitgutter 类似git的diff效果,在修改和新加行左侧做个标记