Python3.7.0 Shell添加清屏快捷键的实现示例
作者:???fu?? 时间:2023-02-25 13:39:23
1、找到python的安装目录在python (版本号)\lib\idlelib目录下
添加Clearwindow.py文件
源代码如下:
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)
2、继续在当前目录下(python (版本号)\lib\idlelib)打开编辑config-extensions.def(IDLE扩展配置文件)
在原文件下添加如下代码:
[ClearWindow]
enable=1
enable_editor=0
enable_shell=1
[ClearWindow_cfgBindings]
clear-window=<Control-Key-w>
3、重新启动IDLE,点击Options,可看到:
输入一些代码
Ctrl+w
即可完成清屏!!!!到此这篇关于Python3.7.0 Shell添加清屏快捷键的实现示例的文章就介绍到这了,更多相关Python Shell添加清屏内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
来源:https://blog.csdn.net/k13629129790/article/details/105030010
标签:Python,Shell,清屏
0
投稿
猜你喜欢
详解Python下Flask-ApScheduler快速指南
2023-12-25 07:37:34
Javascript typeof与instanceof的区别
2024-06-07 15:53:47
Pandas使用分隔符或正则表达式将字符串拆分为多列
2022-03-05 13:52:54
Python Matplotlib中使用plt.savefig存储图片的方法举例
2021-11-19 14:08:55
sqlserver 日期比较、日期查询常用语句:月的第一天,季度的第一天等
2010-08-01 18:58:00
Python 爬虫批量爬取网页图片保存到本地的实现代码
2021-06-23 02:12:34
python moviepy 的用法入门篇
2022-09-03 11:41:16
php判断正常访问和外部访问的示例
2024-05-11 09:45:46
Python根据当前日期取去年同星期日期
2021-09-14 15:01:48
MySQL数据库优化之分表分库操作实例详解
2024-01-20 10:33:53
Python模拟登陆淘宝并统计淘宝消费情况的代码实例分享
2023-05-01 17:28:00
python导入模块交叉引用的方法
2021-11-01 07:03:42
JS页面获取 session 值,作用域和闭包学习笔记
2024-04-22 13:23:06
python将多个py文件和其他文件打包为exe可执行文件
2021-07-02 05:36:40
tensorboard 可以显示graph,却不能显示scalar的解决方式
2022-07-21 08:55:46
白鸦:贪守米缸者,饿死灶台
2009-02-23 13:03:00
详解Python自动化之文件自动化处理
2022-07-24 03:50:02
亲手教你怎样创建一个简单的mysql数据库
2024-01-18 21:59:04
python机器学习之神经网络(二)
2021-12-21 08:41:54
对python 多线程中的守护线程与join的用法详解
2021-08-11 10:56:51