- Baixe o Karabiner (anteriormente conhecido como KeyRemap4MacBook). link
- Veja este artigo sobre como criar um novo 'Perfil' e abrir / editar 'private.xml'. link
- Use para remapear as teclas de atalho esquerdas (somente COPY, CUT, PASTE, UNDO) das teclas de atalho do PC para a tecla de atalho do Mac.
Copie / cole isso em seu próprio arquivo 'private.xml', depois em ReloadXML e marque as caixas ao lado dos novos scripts mostrados na seção 'remapeamento' da guia 'Alterar chave'.
<?xml version="1.0"?>
<root>
<item>
<name>COPY - Change Control-C to Command-C</name>
<identifier>private.controlC_commandC</identifier>
<autogen>__KeyToKey__
KeyCode::C, ModifierFlag::CONTROL_L,
KeyCode::C, ModifierFlag::COMMAND_L</autogen>
</item>
<item>
<name>CUT - Change Control-X to Command-X</name>
<identifier>private.controlX_commandX</identifier>
<autogen>__KeyToKey__
KeyCode::X, ModifierFlag::CONTROL_L,
KeyCode::X, ModifierFlag::COMMAND_L</autogen>
</item>
<item>
<name>PASTE - Change Control-V to Command-V</name>
<identifier>private.controlV_commandV</identifier>
<autogen>__KeyToKey__
KeyCode::V, ModifierFlag::CONTROL_L,
KeyCode::V, ModifierFlag::COMMAND_L</autogen>
</item>
<item>
<name>UNDO - Change Control-Z to Command-Z</name>
<identifier>private.controlZ_commandZ</identifier>
<autogen>__KeyToKey__
KeyCode::Z, ModifierFlag::CONTROL_L,
KeyCode::Z, ModifierFlag::COMMAND_L</autogen>
</item>
</root>