hamacoの日記

どうでもいい日常をたれながす日記だと思う

なんか今朝から Slack で日本語入力しようとして C-j を押すとダウンロードリストが表示されるようになってしまったので ~/.config/karabiner/karabiner.json に下記追記して対応した。PhpStorm のコピペで bundle_identifiers 変えただけ。

{
    "description": "Ctrl-J to Kana on Slack",
    "manipulators": [
        {
            "conditions": [
                {
                    "bundle_identifiers": [
                        "^com\\.tinyspeck\\.slack"
                    ],
                    "type": "frontmost_application_if"
                }
            ],
            "from": {
                "key_code": "j",
                "modifiers": {
                    "mandatory": [
                        "control"
                    ]
                }
            },
            "to": [
                {
                    "key_code": "japanese_kana"
                }
            ],
            "type": "basic"
        }
    ]
},