Created
June 19, 2025 23:11
-
-
Save gzimbron/67b6f5cb04342a04fc2d2b8a3822c3f1 to your computer and use it in GitHub Desktop.
Karabiner Elements Copy + Paste shortcuts
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
{ | |
"description": "F4 = Command+C then Escape", | |
"manipulators": [ | |
{ | |
"from": { "key_code": "f4" }, | |
"to": [ | |
{ | |
"key_code": "c", | |
"modifiers": ["left_command"] | |
} | |
], | |
"to_delayed_action": { "to_if_invoked": [{ "key_code": "escape" }] }, | |
"type": "basic" | |
} | |
] | |
} |
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
{ | |
"description": "F5 = Command+A then Command+V", | |
"manipulators": [ | |
{ | |
"from": { "key_code": "f5" }, | |
"to": [ | |
{ | |
"key_code": "a", | |
"modifiers": ["left_command"] | |
} | |
], | |
"to_delayed_action": { | |
"to_if_invoked": [ | |
{ | |
"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