Skip to content

Instantly share code, notes, and snippets.

@gzimbron
Created June 19, 2025 23:11
Show Gist options
  • Save gzimbron/67b6f5cb04342a04fc2d2b8a3822c3f1 to your computer and use it in GitHub Desktop.
Save gzimbron/67b6f5cb04342a04fc2d2b8a3822c3f1 to your computer and use it in GitHub Desktop.
Karabiner Elements Copy + Paste shortcuts
{
"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"
}
]
}
{
"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