Notion に 前のページ、次のページ に遷移するショートカットキーがある

別のショートカットキーに変えたくなったので Karabiner-Elements で設定を変更する
~/.config/karabiner/karabiner.json に以下の JSON を追加して option + n , option + p で遷移できるようにした 1
{ "description": "notion cmd+shift+k", "manipulators": [ { "conditions": [ { "bundle_identifiers": [ "^notion\\.id$" ], "type": "frontmost_application_if" } ], "from": { "key_code": "p", "modifiers": { "mandatory": [ "option" ] } }, "to": [ { "key_code": "k", "modifiers": [ "control", "shift" ] } ], "type": "basic" } ] }, { "description": "notion cmd+shift+j", "manipulators": [ { "conditions": [ { "bundle_identifiers": [ "^notion\\.id$" ], "type": "frontmost_application_if" } ], "from": { "key_code": "n", "modifiers": { "mandatory": [ "option" ] } }, "to": [ { "key_code": "j", "modifiers": [ "control", "shift" ] } ], "type": "basic" } ] },