欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-03-07 17:09:18
...

转载自作者: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: aaa@qq.com
#2010/10/12 14:11
"""
Usage:
Just A Template
"""
if __name__ == '__main__':
    pass
 

打完收工!

 

相关标签: python editplus