是否可以自动化或编写一个宏,在 NotePad ++ 中以一定的时间间隔发出空格(或任何字符)或回车符?
例如,如果我想每次 5 分钟发出字母“E”,是否可以使用宏自动发出字母“E”?
您可以在 PythonScript 插件中运行 python 脚本。
如果尚未安装,请按照此指南
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")