Created
November 14, 2018 09:46
-
-
Save jccode/5c4976be42813bad2870f76a83fa27cd to your computer and use it in GitHub Desktop.
Fixed input method
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
;; | |
;; VcxSrv.ahk | |
;; | |
;; Fixed switching input method shortcut key conflicts (Ctrl+Space, Ctrl+Shift) | |
;; between host windows and VcxSrv applications. | |
;; | |
#IfWinActive, ahk_exe vcxsrv.exe | |
^Space:: | |
ControlSend, , ^{Space} | |
Return | |
^!:: | |
ControlSend, , ^! | |
Return | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment