1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Karabiner-Elementsで独自ルールを作る(バックスペースをctrl+n)

Posted at

概要

  • ctrl + hjkl公開されているルールを利用したが、Macのデフォルトのバックスペースショートカットctrl + hが右カーソルに割り当てられてしまった。
  • 別途、Karabiner-Elementsに独自ルールを作成してバックスペースをでctrl + nにした。

公式ドキュメント

設定ファイルの置き場

/Users/ユーザー名/.config/karabiner/assets/complex_modifications/

作成

  • 適当なファイル名でjsonファイルを作成する
backspace_ctrl_n.json
{
  "title": "俺のルール",
  "rules": [
    {
      "description": "Ctrl + n = backspace",
      "manipulators": [
         {
            "type": "basic",
            "from": {
                "key_code": "n",
                "modifiers": {
                    "mandatory": ["control"],
                    "optional": ["caps_lock", "option"]
                }
            },
            "to": [
                {
                    "key_code": "delete_or_backspace"
                }
            ]
         }
      ]
    }
  ]
}

Karabiner-Elements で追加

  • complex modifications > + Add ruleボタンを押すと先程の独自ルールがいるので+ Enableする

スクリーンショット 2020-03-28 22.00.39.png

以上

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?