Python IDLE配置清屏快捷键(Ctrl+L)

1.在Python\Lib\idlelib下,新建一个ClearWindow.py文件(没有时就新建),内容如下:

"""

Clear Window Extension
Version: 0.2

Author: Roger D. Serwy
        [email protected]

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)

  2.Python\Lib\idlelib下修改config-extensions.def ,在末尾添加如下内容:

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

  3.重新Python的IDLE,在options选项中就可以看到增加了Clear shell Window Ctrl+L,即清屏的快捷键为:Ctrl+L

原文地址:https://www.cnblogs.com/gdf456/p/9499117.html

时间: 2024-10-10 18:20:20

Python IDLE配置清屏快捷键(Ctrl+L)的相关文章

Python IDLE的清屏问题

新手在使用IDLE的过程中,肯定遇到麻烦的清屏问题,本次找到了简单高效的清屏解决方案: 首先在文本编译器里输入以下代码: """ Clear Window Extension Version: 0.2 Author: Roger D. Serwy [email protected] Date: 2009-06-14 It provides "Clear Shell Window" under "Options" with ability

Python IDE 设置清屏快捷键

1.在Python\Lib\idlelib下,新建一个ClearWindow.py文件(没有时就新建),内容如下: """ Clear Window Extension Version: 0.2 Author: Roger D. Serwy [email protected] Date: 2009-06-14 It provides "Clear Shell Window" under "Options" with ability to

Python IDLE 增加清屏功能

保存如下代码到 ClearWindow.py """ Clear Window Extension Version: 0.2 Author: Roger D. Serwy [email protected] Date: 2009-06-14 It provides "Clear Shell Window" under "Options" with ability to undo. Add these lines to config-ex

Python Shell 怎样清屏?

启动Python有两种方式,分别为"Windows命令行窗口"和"IDLE" "命令行窗口"下可以通过如下两种方法: 1. import subprocess subprocess.call("clear") # linux/mac subprocess.call("cls", shell=True) # windows 执行完次命令后,窗口顶部第一行会出现一个0,接下来才会是输入提示符">

Python IDLE和Shell的快捷键

IDLE编辑器快捷键自动补全代码        Alt+/(查找编辑器内已经写过的代码来补全)补全提示              Ctrl+Shift+space(默认与输入法冲突,修改之)(方法:Options->configure IDLE-->Keys-> force-open-completions提示的时候只要按空格就出来对于的,否则翻上下键不需要按其他键自动就补全了) 后退                    Ctrl+Z 重做                    Ctr

idle清屏

步骤: 下载一个叫ClearWindow.py 的扩展文件,代码如下(将以下代码命名为ClearWindow.py,注意大小写) class ClearWindow:    menudefs = [       ('options', [None,               ('Clear Shell Window', '<<clear-window>>'),       ]),]    def __init__(self, editwin):        self.editw

python idle 清屏问题的解决

在学习和使用python的过程中,少不了要与python idle打交道.但使用python idle都会遇到一个常见而又懊恼的问题——要怎么清屏? 我在stackoverflow看到这样两种答案: 1.在shell中输入 1 import os 2 os.system('cls') 这种方法只能在windows系统中cmd模式下的python shell 才管用(因为cls的命令是针对cmd的),在python idle直接返回了一个0的值. 2.定义一个cls的函数,每次使用输入cls()即

python shell (IDLE)清屏设置

在python中有很多这样类似的问题.再google了一下,才算找到了答案--为idle增加一个清屏的扩展ClearWindow就可以了(在http://bugs.python.org/issue6143中可以看到这个扩展的说明). 下面我说安装使用的方法.首先下载clearwindow.py(点击可直接下载,不能下载的可以右键保存,格式为py结尾),将这个文件放在Python X\Lib\idlelib目录下(X为你的python版本),然后在这个目录下找到config-extensions.

Python的IDEL增加清屏功能

为idle增加一个清屏的扩展ClearWindow就可以了(在http://bugs.python.org/issue6143中可以看到这个扩展的说明).下面我说安装使用的方法.首先下载clearwindow.py(点击可直接下载,不能下载的可以右键保存,格式为py结尾),将这个文件放在Python X\Lib\idlelib目录下(X为你的python版本),然后在这个目录下找到config-extensions.def这个文件(idle扩展的配置文件),以记事本的方式打开它(为防止出错,你可