-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
#UseHook On ; Make it a bit slow, but can avoid infinitude loop | ||
; Same as "$" for each hotkey | ||
#InstallKeybdHook ; For checking key history | ||
; Use ~500kB memory? | ||
#HotkeyInterval 2000 ; Hotkey interval (default 2000 milliseconds). | ||
#MaxHotkeysPerInterval 70 ; Max hotkeys per interval (default 50). | ||
|
||
; #Warn ; Enable warnings to assist with detecting common errors. | ||
|
||
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | ||
#UseHook True ; Make it a bit slow, but can avoid infinitude loop | ||
; Same as "$" for each hotkey | ||
InstallKeybdHook(true) ; For checking key history | ||
; Use ~500kB memory? | ||
A_HotkeyInterval := 2000 ; Hotkey interval (default 2000 milliseconds). | ||
A_MaxHotkeysPerInterval := 70 ; Max hotkeys per interval (default 50). | ||
SendMode("Input") ; Recommended for new scripts due to its superior speed and reliability. |