38
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Macのキーリピートを速くしたい

Last updated at Posted at 2024-07-30

はじめに

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」の操作がとても快適になります。

参考記事

[Mac] キーボードの反応速度を速くする方法 2

38
9
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
38
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?