Skip to content

Instantly share code, notes, and snippets.

@martinamps
Created February 27, 2025 00:09
Show Gist options
  • Save martinamps/599a0fa3f5af60339d0115d7a0d8647b to your computer and use it in GitHub Desktop.
Save martinamps/599a0fa3f5af60339d0115d7a0d8647b to your computer and use it in GitHub Desktop.
Figma karabiner remap to Sketch group parent navigate
{
"title": "Figma Shift+Return to Esc",
"rules": [
{
"description": "Remap Shift+Return to Esc in Figma only.",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "return_or_enter",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [
{
"key_code": "escape"
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^com\\.figma\\.Desktop$"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment