how to clear windows terminal settings code example
Example 1: clear terminal on windows
; -------------------------------------------------------------------------
; Cntr-L should clear screen
; -------------------------------------------------------------------------
#IfWinActive ahk_class ConsoleWindowClass
^L::
Send cls{Enter}
return
#IfWinActive
Example 2: clear terminal windows
cls
//clean terminal only on windows