キーリピートの変更の仕方
MacOSXでキーリピートの変更の仕方したい。通常は、システム環境設定 > キーボード > キーボードで設定できる。それ以上に早くしたい場合や細かい設定を変えたい場合はdefaults
コマンドを使用して、Terminalから設定する。
キーリピートの設定
1毎にで15ms変わる。
- [InitialKeyRepeat] リピート入力認識までの時間
- [KeyRepeat] キーのリピート
書き込み
$ defaults write -g InitialKeyRepeat -int 12 # 180ms
$ defaults write -g KeyRepeat -int 1 # 15ms
確認
$ defaults read -g InitialKeyRepeat
12
$ defaults read -g KeyRepeat
1