LoginSignup
0
1

More than 3 years have passed since last update.

karabiner設定方法(超簡単な必要最小限ver.)

Last updated at Posted at 2020-03-01

backquoteの位置が気に入らなかったので。

長々しい説明を省いた超簡易バージョン!

設定ファイルを開く

# vscodeで設定ファイルを開く場合
code -n ~/.config/karabiner/karabiner.json

json形式で設定を追加

※この例は"alt + backslashでbackquote"にする場合


{
    "description": "alt + backslashで `",
    "manipulators": [
        {
            "type": "basic",
            "from": {
                "key_code": "backslash",
                "modifiers": {
                    "mandatory": [ "left_alt" ]
                }
            },
            "to": [
                {
                    "key_code": "grave_accent_and_tilde"
                }
            ]
        }
    ]
},

詳細を知りたい方はこちら
Karabiner-Elementsの設定項目をまとめました - Qiita

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1