basyura's blog

あしたになったらほんきだす。

Karabiner-Elements : Vivaldi のアドレスバーにいるときに Ctrl+P or Ctrl+N で上下移動したい

windows は仕方ないとしても、mac ならできていいと思うんだけどなぁ。
アドレスバーにいるかどうかの判断はできないから vivaldi にいるとき常にの設定になっちゃうけど。

{
  "title": "Vivaldi.app",
  "rules": [
    {
      "description": "Vivaldi misc",
      "manipulators": [
        {
          "type": "basic",
          "from": { "key_code": "n", "modifiers": { "mandatory": [ "control" ]} },
          "to": [ { "key_code": "down_arrow"} ],
          "conditions": [ { "type": "frontmost_application_if", "bundle_identifiers": [ "^com\\.vivaldi\\.Vivaldi$" ] } ]
        },
        {
          "type": "basic",
          "from": { "key_code": "p", "modifiers": { "mandatory": [ "control" ]} },
          "to": [ { "key_code": "up_arrow"} ],
          "conditions": [ { "type": "frontmost_application_if", "bundle_identifiers": [ "^com\\.vivaldi\\.Vivaldi$" ] } ]
        }
      ]
    }
  ]
}