Skip to content

Instantly share code, notes, and snippets.

@youcune
Created August 23, 2021 02:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save youcune/9b2f42f6fb92dff912ef0e5d42ba4468 to your computer and use it in GitHub Desktop.
Save youcune/9b2f42f6fb92dff912ef0e5d42ba4468 to your computer and use it in GitHub Desktop.
Notion Mac AppでCmd+[, Cmd+] でインデントできるようにするKarabiner-ElementsのComplex Modificationsファイル
{
"title": "Notion",
"rules": [
{
"description": "[Notion] Command+[ to Shift+Tab",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "open_bracket",
"modifiers": {
"mandatory": ["command"]
}
},
"to": [
{
"key_code": "tab",
"modifiers": ["shift"]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^notion\\.id$"
]
}
]
}
]
},
{
"description": "[Notion] Command+] to Tab",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "close_bracket",
"modifiers": {
"mandatory": ["command"]
}
},
"to": [
{
"key_code": "tab"
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"^notion\\.id$"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment