diff options
author | breadcat | 2018-07-10 14:37:43 +0100 |
---|---|---|
committer | breadcat | 2018-07-10 14:37:43 +0100 |
commit | 0d3745a1b6e8378b4f2c195431ecc09b59992711 (patch) | |
tree | cce55103642f6afc5777b4eae7ebe8f41c789ab0 | |
parent | 1c880e83a67804d73f6a00bc21c8973c57028333 (diff) | |
download | ahka-0d3745a1b6e8378b4f2c195431ecc09b59992711.tar.gz ahka-0d3745a1b6e8378b4f2c195431ecc09b59992711.tar.bz2 ahka-0d3745a1b6e8378b4f2c195431ecc09b59992711.zip |
Add clear screen command
-rw-r--r-- | ahk-assistant.ahk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk index 69e1017..f615281 100644 --- a/ahk-assistant.ahk +++ b/ahk-assistant.ahk @@ -202,6 +202,7 @@ Insert::appendClipboard() #IfWinActive ahk_class ConsoleWindowClass ; command prompt
+Insert:: ; unix style S-insert, overflow
^v::cmdPaste() ; win style C-v, paste function
+ ^l::Send ^c{Enter}cls{Enter} ; clear screen as in linux
#IfWinActive
#IfWinActive ahk_class ahk_class ahk_class MozillaWindowClass ; firefox
|