在NotePad ++上以一定的时间间隔自动输入空格或回车

问题描述 投票:0回答:1

是否可以自动化或编写一个宏,在 NotePad ++ 中以一定的时间间隔发出空格(或任何字符)或回车符?

例如,如果我想每次 5 分钟发出字母“E”,是否可以使用宏自动发出字母“E”?

notepad++ programmers-notepad
1个回答
0
投票

您可以在 PythonScript 插件中运行 python 脚本。

如果尚未安装,请按照此指南

  • 创建脚本(插件 >> PythonScript >> 新脚本)
  • 复制此代码并保存文件(例如generate.py):
from time import sleep

for i in range(10):     # The text will be appended 10 times, put the value you need
    sleep(5*60)         # 5 min
    editor.appendText("\nWHATEVER YOU WANT")
  • 打开要修改的文件
  • 运行脚本(插件 >> PythonScript >> 脚本 >> 生成)
  • 完成
© www.soinside.com 2019 - 2024. All rights reserved.