Windows: swap underscore and dash key
Solution 1:
You can use the free AutoHotkey.
To swap _ and - you could use a AutoHotkey script such as:
$-::Send, _
$_::Send, -
After installing AutoHotKey, put the script in a .ahk
file and double-click
it to test. You may stop the script by right-click on the green H icon in the
traybar and choosing Exit.
To have it run on login, place it in the Startup group at
C:\Users\USER-NAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
.
Useful AutoHotkey documentation:
- List of Keys
- Hotkeys