はじめに
Macのキー入力リピートをシステム設定より速くしたいと思ったので調べました。
戻すことも可能ですので試してみてください。
現在の設定を確認する
下記コマンドで現在の値が確認できます。
$ defaults read -g InitialKeyRepeat
$ defaults read -g KeyRepeat
キーリピート速度を速くする
下記コマンドでキーリピートの速度を変更できます。数字で調整可能です。
$ defaults write -g InitialKeyRepeat -int 11
$ defaults write -g KeyRepeat -int 1
設定を適用するためには1度Macの再起動が必要です。
設定を戻す
下記コマンドで設定を戻すことが可能です。
$ defaults delete -g InitialKeyRepeat
$ defaults delete -g KeyRepeat
まとめ
「control + B」や「control + H」の操作がとても快適になります。