Created
August 23, 2021 02:30
-
-
Save youcune/9b2f42f6fb92dff912ef0e5d42ba4468 to your computer and use it in GitHub Desktop.
Notion Mac AppでCmd+[, Cmd+] でインデントできるようにするKarabiner-ElementsのComplex Modificationsファイル
This file contains 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
{ | |
"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