python idle 清屏拓展

这篇博客介绍了如何为Python IDLE添加一个清屏功能扩展。通过编辑`config-extensions.def`配置文件并创建`ClearWindow.py`,用户可以在IDLE的shell中选择'ClearShellWindow'选项或使用快捷键Ctrl+L来清除当前窗口的内容,同时保留当前命令。这个功能对于清理和组织代码编辑环境非常有用。
摘要由CSDN通过智能技术生成
添加 python idle 清屏功能拓展
"""

Clear Window Extension
It provides "Clear Shell Window" under "Options"
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_window)

    def clear_window2(self, event): # Alternative method
        # work around the ModifiedUndoDelegator
        text = self.text
        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")

        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)
 
导入方式:

找到python安装路径,打开Lib文件夹,再打开其中的idlelib文件夹,新建一个文本文件命名为:ClearWindow.py向其中添加上述代码,保存后找到同一文件下的config-extensions.def,在其末尾添加如下配置文件,保存即可。

[ClearWindow]
enable=1
enable_editor=0
enable_shell=1
[ClearWindow_cfgBindings]
clear-window=<Control-Key-l>
使用方式:

1.使用shell中的option选项:
在这里插入图片描述
2.使用快捷键 : ctrl+L

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值