neo-layout/windows/neo-vars/src/global_switches.ahk

21 lines
577 B
AutoHotkey

; -*- encoding: utf-8 -*-
; General
#SingleInstance Force
#NoEnv
FileEncoding, UTF-8 ; read/write files in utf-8 (+BOM) encoding by default
; Threading
#MaxThreadsPerHotKey 1 ; (concurrent critical threads get buffered)
Critical, On ; make all threads uninterruptible by default
; Performance
Process, Priority, , High
SetBatchLines, -1 ; (implied by critical on)
; Key events
#MaxHotkeysPerInterval 2000
#UseHook On
SendMode Input ; Event ; "Input" caused some issues 12 years ago, see commit bea2956deafd12fe0347a25822829647063bbc07
SetKeyDelay,-1