学習バンザイITエンジニアの精神安穏日記

ITエンジニアというより、IT系雑務者

【Karabiner-Elements】ブラウザのURLバーでctrl-wを使う

問題点

大体のブラウザでは、ctrl-wが使えなくて単語ごとに消せなくて困る。

やり方

  1. karabiner-elementsをDLする。
  2. 「Complex-modification」タブから「Add your own rule」で、以下の設定をインポートする。

設定

自分はArcブラウザ使っているため、bundle_identifiers^company\\.thebrowser\\.Browser$としている。 macのアプリのbundle_identifiersの確認方法は下記を参照

karabiner-elements.pqrs.org

conditionにて、Arcブラウザのみで有効になるようにしている。

{
    "description": "ctrl + w in Arc",
    "manipulators": [
        {
            "conditions": [
                {
                    "bundle_identifiers": [
                        "^company\\.thebrowser\\.Browser$"
                    ],
                    "type": "frontmost_application_if"
                }
            ],
            "from": {
                "key_code": "w",
                "modifiers": {
                    "mandatory": [
                        "control"
                    ]
                }
            },
            "to": [
                {
                    "key_code": "delete_or_backspace",
                    "modifiers": [
                        "option"
                    ]
                }
            ],
            "type": "basic"
        }
    ]
}