Skip to content

Instantly share code, notes, and snippets.

@dpindur
Created March 24, 2022 07:16
Show Gist options
  • Save dpindur/51f77f79440f2a6bccfa0c5362a8af79 to your computer and use it in GitHub Desktop.
Save dpindur/51f77f79440f2a6bccfa0c5362a8af79 to your computer and use it in GitHub Desktop.
Windows Style Copy & Paste Config
{
"rules": [
{
"description": "Ctrl+Insert Copy",
"manipulators": [
{
"from": {
"key_code": "insert",
"modifiers": {
"mandatory": [
"right_control"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"left_command"
]
}
],
"type": "basic"
}
]
},
{
"description": "Shift+Insert Paste",
"manipulators": [
{
"from": {
"key_code": "insert",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "v",
"modifiers": [
"left_command"
]
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment