* If AHK is suddenly not working correctly, try running the script as admin.
* To create elevated shortcut, use [this guide](https://www.tenforums.com/tutorials/57690-create-elevated-shortcut-without-uac-prompt-windows-10-a.html)
* If a keybind doesn't work when switching input language try substituting the keys with VK or SC versions (eg `vkE2` instead of `\` and `<`)
```ahk
Capslock & Space:: ; ~ on caps enables caps-toggling
;code
Space & Capslock:: ; ~ on caps enables caps-toggling
;code
Capslock::Return ; ~ on caps enables caps (except on combos where caps is the second key, eg: Space & Capslock)
```