IDLE的GUI交互模式下完美清屏
==============================================================================
1.首先把复制新建保存ClearWindow.py文件,将这个文件放在<Python安装位置>\Lib\idlelib目录下
2.在这个目录下找到config-extensions.def这个文件(idle扩展的配置文件).尾部加如下信息
3、保存、关闭文件
4、重新启动IDLE,在option下面就有了Clear shell window 选项。快捷键是Ctrl + L

[ClearWindow]
enable=1
enable_editor=0
enable_shell=1
[ClearWindow_cfgBindings]
clear-window=<Control-Key-l>

ClearWindow.py的内容
=======================================
"""

Clear Window Extension
Version: 0.2

Author: Roger D. Serwy
roger.serwy@gmail.com

Date: 2009-06-14

It provides "Clear Shell Window" under "Options"
with ability to undo.

Add these lines to config-extensions.def

[ClearWindow]
enable=1
enable_editor=0
enable_shell=1
[ClearWindow_cfgBindings]
clear-window=<Control-Key-l>

"""

class ClearWindow:

menudefs = [
('options', [None,
('Clear Shell Window', '<<clear-window>>'),
]),]

def __init__(self, editwin):
self.editwin = editwin
self.text = self.editwin.text
self.text.bind("<<clear-window>>", self.clear_window2)

self.text.bind("<<undo>>", self.undo_event) # add="+" doesn't work

def undo_event(self, event):
text = self.text

text.mark_set("iomark2", "iomark")
text.mark_set("insert2", "insert")
self.editwin.undo.undo_event(event)

# fix iomark and insert
text.mark_set("iomark", "iomark2")
text.mark_set("insert", "insert2")
text.mark_unset("iomark2")
text.mark_unset("insert2")

def clear_window2(self, event): # Alternative method
# work around the ModifiedUndoDelegator
text = self.text
text.undo_block_start()
text.mark_set("iomark2", "iomark")
text.mark_set("iomark", 1.0)
text.delete(1.0, "iomark2 linestart")
text.mark_set("iomark", "iomark2")
text.mark_unset("iomark2")
text.undo_block_stop()
if self.text.compare('insert', '<', 'iomark'):
self.text.mark_set('insert', 'end-1c')
self.editwin.set_line_and_column()

def clear_window(self, event):
# remove undo delegator
undo = self.editwin.undo
self.editwin.per.removefilter(undo)

# clear the window, but preserve current command
self.text.delete(1.0, "iomark linestart")
if self.text.compare('insert', '<', 'iomark'):
self.text.mark_set('insert', 'end-1c')
self.editwin.set_line_and_column()

# restore undo delegator
self.editwin.per.insertfilter(undo)

最新文章

  1. response生成图片验证码
  2. WinForm------TextEdit控件去掉换行符
  3. [LintCode] Paint House 粉刷房子
  4. Entity FrameWork对有外键关联的数据表的添加操作
  5. 网络配置和NFS和TFTP的配置
  6. IntelliJ IDEA安装lombok插件
  7. nginx第三方模块---nginx-sticky-module的使用(基于cookie的会话保持)
  8. OD: SEHOP
  9. Cut the sticks
  10. UVA 529 - Addition Chains,迭代加深搜索+剪枝
  11. hadoop搭建杂记:Linux下虚拟机集群网络搭建
  12. windows 配置接收报文是否中断
  13. BZOJ 3238: [Ahoi2013]差异 [后缀自动机]
  14. Java基本语法-----java变量
  15. 知名IT公司的年度大会合集
  16. zookeeper 事务日志
  17. Spring 4 官方文档学习 Web MVC 框架
  18. 解决C#中调用WCF方法报错:远程服务器返回错误 (404) 未找到
  19. L1 与 L2 正则化
  20. java容器Container和组件Component之GUI

热门文章

  1. 《JavaScript Dom 编程艺术》读书笔记-第4章
  2. excel导入数据库实例(含源码 超级详细适合新手)
  3. seajs引入jquery框架问题
  4. selenium+grid做分布式测试
  5. spring cloud/spring boot同时支持http和https访问
  6. 软件工程 week 02
  7. python要开始记录了20181125
  8. Oracle Sql Loader的学习使用
  9. oracle-data-mining
  10. 函数和对象 及 prototype和__proto__