Skip to content

Instantly share code, notes, and snippets.

@lambdalisue
Created September 5, 2024 08:24
Show Gist options
  • Save lambdalisue/be18cb1cf160e31f16c556b4b9b68517 to your computer and use it in GitHub Desktop.
Save lambdalisue/be18cb1cf160e31f16c556b4b9b68517 to your computer and use it in GitHub Desktop.
Karabiner Element Complex modification for Obsidian
{
"title": "Obsidian",
"rules": [
{
"description": "Send Escape twice on Escape",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^md\\.obsidian"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "escape"
},
"to": [
{
"key_code": "escape"
},
{
"key_code": "escape"
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment