macOSでctrl+hでbackspaceにする
Terminal などでは何もせずとも backspace だが、 どのアプリケーションでも ctrl + h で backspace にしたくなった。
Karabiner-Elements の設定
Karabiner-Elements の complex_modifications
を追加する
{ "complex_modifications": { "rules": [ { "description": "Change Left_control + h to Delete_or_Backspace", "manipulators": [ { "from": { "key_code": "h", "modifiers": { "mandatory": [ "left_control" ], "optional": [ "any" ] } }, "to": [ { "key_code": "delete_or_backspace" } ], "type": "basic" } ] } ] } }