キーリピートの変更の仕方

MacOSXでキーリピートの変更の仕方したい。通常は、システム環境設定 > キーボード > キーボードで設定できる。それ以上に早くしたい場合や細かい設定を変えたい場合はdefaultsコマンドを使用して、Terminalから設定する。

key-repeat.png

キーリピートの設定

1毎にで15ms変わる。

書き込み

$ defaults write -g InitialKeyRepeat -int 12 # 180ms
$ defaults write -g KeyRepeat -int 1 # 15ms

確認

$ defaults read -g InitialKeyRepeat 
12
$ defaults read -g KeyRepeat 
1