seems like today may be the day I finally bind caps lock to escape in vim, cause this keyboard (tiny Bluetooth one for my tablet) has no esc key!!!
@bea Even better: alias caps to esc *everywhere* with this AutoHotkey script:
```
#NoEnv
#Warn
SendMode Input
SetWorkingDir %A_ScriptDir%
CapsLock::Send {Escape}
```