Python3.7.0 Shell添加清屏快捷键的实现示例


Posted in Python onMarch 23, 2020

1、找到python的安装目录在python (版本号)\lib\idlelib目录下

Python3.7.0 Shell添加清屏快捷键的实现示例

添加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扩展配置文件)

Python3.7.0 Shell添加清屏快捷键的实现示例

在原文件下添加如下代码:

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

3、重新启动IDLE,点击Options,可看到:

Python3.7.0 Shell添加清屏快捷键的实现示例

输入一些代码

Python3.7.0 Shell添加清屏快捷键的实现示例

Ctrl+w

Python3.7.0 Shell添加清屏快捷键的实现示例

即可完成清屏!!!!到此这篇关于Python3.7.0 Shell添加清屏快捷键的实现示例的文章就介绍到这了,更多相关Python Shell添加清屏内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
python读取oracle函数返回值
Jul 18 Python
python中pandas.DataFrame的简单操作方法(创建、索引、增添与删除)
Mar 12 Python
教大家玩转Python字符串处理的七种技巧
Mar 31 Python
python 编码规范整理
May 05 Python
对Python 数组的切片操作详解
Jul 02 Python
python实现杨氏矩阵查找
Mar 02 Python
Python中那些 Pythonic的写法详解
Jul 02 Python
Python产生一个数值范围内的不重复的随机数的实现方法
Aug 21 Python
wxPython之wx.DC绘制形状
Nov 19 Python
Python实现i人事自动打卡的示例代码
Jan 09 Python
基于python 取余问题(%)详解
Jun 03 Python
Python 生成短8位唯一id实战教程
Jan 13 Python
Python面向对象程序设计之继承、多态原理与用法详解
Mar 23 #Python
python实现图像拼接功能
Mar 23 #Python
Python猴子补丁Monkey Patch用法实例解析
Mar 23 #Python
Python面向对象程序设计之静态方法、类方法、属性方法原理与用法分析
Mar 23 #Python
Python3 pickle对象串行化代码实例解析
Mar 23 #Python
Python面向对象程序设计之类和对象、实例变量、类变量用法分析
Mar 23 #Python
Python3 shelve对象持久存储原理详解
Mar 23 #Python
You might like
PHP也可以?成Shell Script
2006/10/09 PHP
批量获取memcache值并按key的顺序返回的实现代码
2011/06/14 PHP
php递归法读取目录及文件的方法
2015/01/30 PHP
PHP数组相关函数汇总
2015/03/24 PHP
PHP环境中Memcache的安装和使用
2015/11/05 PHP
thinkphp5 + ajax 使用formdata提交数据(包括文件上传) 后台返回json完整实例
2020/03/02 PHP
php使用redis的有序集合zset实现延迟队列应用示例
2020/02/20 PHP
修复ie8&amp;chrome下window的resize事件多次执行
2011/10/20 Javascript
Bootstrap基础学习
2015/06/16 Javascript
Angular2 (RC4) 路由与导航详解
2016/09/21 Javascript
React Native之ListView实现九宫格效果的示例
2017/08/02 Javascript
详解在React里使用&quot;Vuex&quot;
2018/04/02 Javascript
浅析vue-router原理
2018/10/19 Javascript
JavaScript this在函数中的指向及实例详解
2019/10/14 Javascript
详谈Vue.js框架下main.js,App.vue,page/index.vue之间的区别
2020/08/12 Javascript
解决iview table组件里的 固定列 表格不自适应的问题
2020/11/13 Javascript
讲解Python中for循环下的索引变量的作用域
2015/04/15 Python
Python基础入门之seed()方法的使用
2015/05/15 Python
Python中的自省(反射)详解
2015/06/02 Python
Eclipse中Python开发环境搭建简单教程
2016/03/23 Python
通过5个知识点轻松搞定Python的作用域
2016/09/09 Python
网站渗透常用Python小脚本查询同ip网站
2017/05/08 Python
Python 内置函数进制转换的用法(十进制转二进制、八进制、十六进制)
2018/04/30 Python
python3.6.3+opencv3.3.0实现动态人脸捕获
2018/05/25 Python
详解python中list的使用
2019/03/15 Python
python 使用pygame工具包实现贪吃蛇游戏(多彩版)
2019/10/30 Python
opencv+pyQt5实现图片阈值编辑器/寻色块阈值利器
2020/11/13 Python
基于django和dropzone.js实现上传文件
2020/11/24 Python
Abe’s of Maine:自1979以来销售相机和电子产品
2016/11/21 全球购物
ebookers英国:隶属全球最大的在线旅游公司Expedia
2017/12/28 全球购物
开普敦通行证:Cape Town Pass
2019/07/18 全球购物
音乐教育感言
2014/03/05 职场文书
社区低保工作总结2015
2015/07/23 职场文书
2016党员学习《反对自由主义》心得体会
2016/01/22 职场文书
关于React Native使用axios进行网络请求的方法
2021/08/02 Javascript
详细聊聊关于Mysql联合查询的那些事儿
2021/10/24 MySQL