Skip to content

Commit

Permalink
fix: update settings (for v2)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmdnk committed Sep 25, 2024
1 parent 8d92ada commit d52f860
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions lib/util/vim_ahk_setting.ahk
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.

0 comments on commit d52f860

Please sign in to comment.