[转帖]Editplus的Python开发环境配置
转载自作者:ihipop
?
下载语法高亮和自动完成文件,解压缩到editplus安装目录,照图完成配置
不多说了,上图:
配置语法高亮和自动完成:
![[转帖]Editplus的Python开发环境配备](http://img.reader8.net/uploadfile/jiaocheng/20140139/2733/20140127093318641.png)
把tab键入改为空格键入
![[转帖]Editplus的Python开发环境配备](http://img.reader8.net/uploadfile/jiaocheng/20140139/2733/20140127093318642.png)
![[转帖]Editplus的Python开发环境配备](http://img.reader8.net/uploadfile/jiaocheng/20140139/2733/20140127093318643.png)
?
使得通过Ctrl+F11快捷键直接显示出python文件中的函数列表:
![[转帖]Editplus的Python开发环境配备](http://img.reader8.net/uploadfile/jiaocheng/20140139/2733/20140127093318644.png)
[ \t]*def[ \t].+:?
配置嵌入运行
?
?
$(FileName),$(FileDir)
??![[转帖]Editplus的Python开发环境配备](http://img.reader8.net/uploadfile/jiaocheng/20140139/2733/20140127093318645.png)
?
利用利用Editplus的输出模板实现双击错误提示自动跳转到错误行。
?
![[转帖]Editplus的Python开发环境配备](http://img.reader8.net/uploadfile/jiaocheng/20140139/2733/20140127093318646.png)
File "(.+)", line ([0-9]+)?
配置模板:
![[转帖]Editplus的Python开发环境配备](http://img.reader8.net/uploadfile/jiaocheng/20140139/2733/20140127093318647.png)
?
template.py:
#!/usr/bin/env python# -*- coding=utf-8 -*-#Using GPL v2#Author: ihipop@gmail.com#2010/10/12 14:11"""Usage:Just A Template"""if __name__ == '__main__': pass?
打完收工!
?