Python IDLE清屏
1 """
2
3 Clear Window Extension
4 Version: 0.2
5
6 Author: Roger D. Serwy
7 roger.serwy@gmail.com
8
9 Date: 2009-06-14
10
11 It provides "Clear Shell Window" under "Options"
12 with ability to undo.
13
14 Add these lines to config-extensions.def
15
16 [ClearWindow]
17 enable=1
18 enable_editor=0
19 enable_shell=1
20 [ClearWindow_cfgBindings]
21 clear-window=<Control-Key-l>
22
23
24 """
25
26 class ClearWindow:
27
28 menudefs = [
29 ('options', [None,
30 ('Clear Shell Window', '<<clear-window>>'),
31 ]),]
32
33 def __init__(self, editwin):
34 self.editwin = editwin
35 self.text = self.editwin.text
36 self.text.bind("<<clear-window>>", self.clear_window2)
37
38 self.text.bind("<<undo>>", self.undo_event) # add="+" doesn't work
39
40 def undo_event(self, event):
41 text = self.text
42
43 text.mark_set("iomark2", "iomark")
44 text.mark_set("insert2", "insert")
45 self.editwin.undo.undo_event(event)
46
47 # fix iomark and insert
48 text.mark_set("iomark", "iomark2")
49 text.mark_set("insert", "insert2")
50 text.mark_unset("iomark2")
51 text.mark_unset("insert2")
52
53
54 def clear_window2(self, event): # Alternative method
55 # work around the ModifiedUndoDelegator
56 text = self.text
57 text.undo_block_start()
58 text.mark_set("iomark2", "iomark")
59 text.mark_set("iomark", 1.0)
60 text.delete(1.0, "iomark2 linestart")
61 text.mark_set("iomark", "iomark2")
62 text.mark_unset("iomark2")
63 text.undo_block_stop()
64 if self.text.compare('insert', '<', 'iomark'):
65 self.text.mark_set('insert', 'end-1c')
66 self.editwin.set_line_and_column()
67
68 def clear_window(self, event):
69 # remove undo delegator
70 undo = self.editwin.undo
71 self.editwin.per.removefilter(undo)
72
73 # clear the window, but preserve current command
74 self.text.delete(1.0, "iomark linestart")
75 if self.text.compare('insert', '<', 'iomark'):
76 self.text.mark_set('insert', 'end-1c')
77 self.editwin.set_line_and_column()
78
79 # restore undo delegator
80 self.editwin.per.insertfilter(undo)
Python IDLE清屏的更多相关文章
- 转:python idle 清屏问题的解决
http://www.cnblogs.com/maybego/p/3234055.html python idle 清屏问题的解决 在学习和使用python的过程中,少不了要与python idle打 ...
- python idle 清屏问题的解决
在学习和使用python的过程中,少不了要与python idle打交道.但使用python idle都会遇到一个常见而又懊恼的问题——要怎么清屏? 我在stackoverflow看到这样两种答案 ...
- Python IDLE 清屏工具
转载自:http://www.cnblogs.com/maybego/p/3234055.html 1.下载clearwindow.py(右击-目标另存为,直接点击会打开脚本内容). 2.拷贝c ...
- python3.4学习笔记(三) idle 清屏扩展插件
python3.4学习笔记(三) idle 清屏扩展插件python idle 清屏问题的解决,使用python idle都会遇到一个常见而又懊恼的问题——要怎么清屏?在stackoverflow看到 ...
- Python:IDLE清屏
清屏很简单,为IDLE增加一个清屏的扩展ClearWindow即可. 首先下载clearwindow.py(点击可直接下载,不能下载的可以右键保存,格式为py结尾), 将这个文件放到Python安装目 ...
- Python 实现清屏
使用Python的IDLE到某个程序节点时,需要清屏以提高清晰度. 但IDLE本身并没有这个功能,我们可以通过扩展来实现类似于Ctrl + L的清屏 资料来自于百度经验的 BinnLZeng 先制作一 ...
- python shell 清屏(window)
IDLE增加一个清屏的扩展ClearWindow就可以了(在Issue 6143: IDLE中可以看到这个扩展的说明) 安装使用的方法 1.下载ClearWindow.py(右击-目标另存为,格式为p ...
- python实现清屏
往常都是用os.system("cls")清屏,但是发现每次执行完这个命令后都会出现一个空白字符 尝试了一下午,网上也没解决的办法 最后: os.system("cls& ...
- 【Python】IDLE清屏
上网搜,没搜到可用的快捷键.但看到一个通过打印空内容来清屏的方法,smart ef clear(): for i in range(60): print
随机推荐
- 『德不孤』Pytest框架 — 10、setUp()和tearDown()函数
目录 1.setUp()和tearDown()函数介绍 2.setUp()和tearDown()函数作用 3.setUp()和tearDown()函数说明 4.示例 (1)方法级 (2)类级 (3)函 ...
- 内置方法 __new__ __del__
1.__new__ 构造方法 实例化对象是先执行__new__方法,但是类中没有__new__方法,所以先到父类object类中的new方法,开辟一个属于对象的空间,然后再执行init方法 设计模式: ...
- python 多ip端口扫描器
from socket import * import threading #导入线程相关模块 import re # qianxiao996精心制作 #博客地址:https://blog.csdn. ...
- sqlmap之waf绕过
#一点补充 在老版本的安全狗中,可通过构造payload: http://xx.xx.xx.xx/sqli-labs/Less-2/index.php/x.txt?id=1 and 1=1 可通过in ...
- Redis 系统学习目录
Redis 系统学习目录 1.redis是什么2.redis的作者何许人也3.谁在使用redis4.学会安装redis5.学会启动redis6.使用redis客户端7.redis数据结构 – 简介8. ...
- Makefile学习(一)
objects = main.o kbd.o command.o display.o \ insert.o search.o files.o utils.o ...
- 什么是 inode ?
一般来说,面试不会问 inode .但是 inode 是一个重要概念,是理解 Unix/Linux 文件系统和硬盘储存的基础.理解inode,要从文件储存说起.文件储存在硬盘上,硬盘的最小存储单位叫做 ...
- Java如何声明一个数组?JS如何声明一个数组?如何获取数组长度
1 Long[] numbers; //一般使用的定义方式,可分为静态和动态两种定义方式,下有说明. 2 Long numbers[]; //跟上面用法一致. 3 Long... numbers; / ...
- 解释 MySQL 外连接、内连接与自连接的区别 ?
先说什么是交叉连接: 交叉连接又叫笛卡尔积,它是指不使用任何条件,直接将一 个表的所有记录和另一个表中的所有记录一一匹配. 内连接 则是只有条件的交叉连接,根据某个条件筛选出符合条件的记录,不符合 条 ...
- We're sorry but demo3 doesn't work properly without JavaScript enabled. Please enable it to continue.
今天遇到一个问题为 vue请求得到的响应为 We're sorry but demo3 doesn't work properly without JavaScript enabled. Please ...