How can I have Windows keymapping on my Macbook, CTRL+C, CTRL+V

Solution 1:

If you got at least MacOS Sierra on your MacBook you might use Karabiner Elements. If there is no suitable set of "Complex Modifications" importable for your case on their site, you'd have to manually edit

~/.config/karabiner/karabiner.json

with e.g. BBEdit (better make a backup copy before you start!). Doing so you'd have to go to:

"rules": [ /*...*/ ]

Here is an example from another question asked here:

{
  "Description": "Ctrl-C to Cmd-C, next and last re-mapping",
  "manipulators": [
    {
      "from": {
        "key_code": "c",
        "modifiers": {
          "mandatory": ["left_control"] 
        }
      },
      "to": [{
        "key_code": "c",
        "modifiers": ["left_command"] 
      }],
      "type": "basic"
    }
  ]
}

I suppose this should work with any app as the key code is altered low level.