📜  清除 Windows 上的终端 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:01.681000             🧑  作者: Mango

代码示例2
; -------------------------------------------------------------------------
; Cntr-L should clear screen
; -------------------------------------------------------------------------
#IfWinActive ahk_class ConsoleWindowClass
^L::
Send cls{Enter}
return

#IfWinActive