当前位置:Gxlcms > Python > 请推荐分享sublimetext2forpython的好用插件?

请推荐分享sublimetext2forpython的好用插件?

时间:2021-07-01 10:21:17 帮助过:51人阅读

回复内容:

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插件,代码补全智能感知超级好用github.com/srusskih/Sub 目前我安装了以下几个,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效果,在修改和新加行左侧做个标记

人气教程排行