LoginSignup
2
1

More than 5 years have passed since last update.

macosで Control+[ 押下をEscapeに割り当てる

Last updated at Posted at 2019-02-23

Escapeキーは遠く、さらにtouch barでは押しにくいので、Control+[をEscapeキーにわりあてます。

  1. Karabinar Elementsをインストールする
  2. 以下を作成する。
~/.config/karabiner/assets/complex_modifications/myconfig.json
{
  "title": "Ctrl+[をEscapeにする。",
  "rules": [
    {
      "description": "Ctrl+[をEscapeにする。",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "key_code": "open_bracket",
            "modifiers": {
              "mandatory": ["control"]
            }
          },
          "to": [
            {
              "key_code": "escape"
            }
          ]
        }
      ]
    }
  ]
}
  1. karabinar-elementsのpreferenceからenableする

スクリーンショット 2019-02-23 10.45.59.png

2
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
2
1