Last active
June 23, 2021 04:37
-
-
Save alangrainger/d1281b1af353dfbdf294b59e2f817e43 to your computer and use it in GitHub Desktop.
Fix MLO broken Ctrl+Backspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Fix the broken Ctrl+Backspace in MyLifeOrganized using Autohotkey | |
#IfWinActive, ahk_exe mlo.exe | |
^Backspace:: | |
Send ^+{Left}{Backspace} | |
return | |
#IfWinActive |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment