Created
May 30, 2018 00:06
-
-
Save useafterfree/d2061d8ac78e88de7aed1b418f60f9c8 to your computer and use it in GitHub Desktop.
MacOS shortcut binding for `Microsoft Remote Desktop Client`
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <!-- transformation for clipboard actions (cut copy paste) --> | |
| <!-- layout specific --> | |
| <layouts> | |
| <!-- Dvorak X C V are not on same physical position as on US keyboard. --> | |
| <layout name="com.apple.keylayout.Dvorak"> | |
| <transformations> | |
| <!-- Command+X to Control+X --> | |
| <transform> | |
| <from command="1" key="B" /> | |
| <to control="1" key="B" /> | |
| </transform> | |
| <!-- Command+C to Control+C --> | |
| <transform> | |
| <from command="1" key="I" /> | |
| <to control="1" key="I" /> | |
| </transform> | |
| <!-- Command+V to Control+V --> | |
| <transform> | |
| <from command="1" key="Period" /> | |
| <to control="1" key="Period" /> | |
| </transform> | |
| </transformations> | |
| </layout> | |
| <!-- the default is US keyboard physical position for X C V --> | |
| <layout name="default"> | |
| <transformations> | |
| <!-- Command+X to Control+X --> | |
| <transform> | |
| <from command="1" key="X" /> | |
| <to control="1" key="X" /> | |
| </transform> | |
| <transform> | |
| <from command="1" key="F" /> | |
| <to control="1" key="F" /> | |
| </transform> | |
| <transform> | |
| <from command="1" key="S" /> | |
| <to control="1" key="S" /> | |
| </transform> | |
| <transform> | |
| <from command="1" key="/" /> | |
| <to control="1" key="/" /> | |
| </transform> | |
| <!-- Command+C to Control+C --> | |
| <transform> | |
| <from command="1" key="C" /> | |
| <to control="1" key="C" /> | |
| </transform> | |
| <transform> | |
| <from command="1" key="R" /> | |
| <to control="1" key="R" /> | |
| </transform> | |
| <transform> | |
| <from command="1" key="A" /> | |
| <to control="1" key="A" /> | |
| </transform> | |
| <transform> | |
| <from command="1" key="Z" /> | |
| <to control="1" key="Z" /> | |
| </transform> | |
| <!-- Command+V to Control+V --> | |
| <transform> | |
| <from command="1" key="V" /> | |
| <to control="1" key="V" /> | |
| </transform> | |
| </transformations> | |
| </layout> | |
| </layouts> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment