首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

[转帖]Editplus的Python开发环境配备

2012-09-08 
[转帖]Editplus的Python开发环境配置转载自作者:ihipop?下载语法高亮和自动完成文件,解压缩到editplus安装

[转帖]Editplus的Python开发环境配置

转载自作者:ihipop

?

下载语法高亮和自动完成文件,解压缩到editplus安装目录,照图完成配置

不多说了,上图:

配置语法高亮和自动完成:


[转帖]Editplus的Python开发环境配备

把tab键入改为空格键入


[转帖]Editplus的Python开发环境配备


[转帖]Editplus的Python开发环境配备

?

使得通过Ctrl+F11快捷键直接显示出python文件中的函数列表:


[转帖]Editplus的Python开发环境配备

[ \t]*def[ \t].+:
?

配置嵌入运行

?

?

$(FileName),$(FileDir)

??
[转帖]Editplus的Python开发环境配备

??

?

利用利用Editplus的输出模板实现双击错误提示自动跳转到错误行。

?


[转帖]Editplus的Python开发环境配备


File "(.+)", line ([0-9]+)
?

配置模板:


[转帖]Editplus的Python开发环境配备
?
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
?

打完收工!

?

热点排行