Ihaveahax
Created page with "Things that could be interesting to use with <code>defaults write</code>. I needed this when I did yet another reinstall. == Enable key repeat == Allows for holding a key to repeat the character instead of bringing up the accents prompt. It can be done per-app too. <syntaxhighlight lang="bash"> defaults write -g ApplePressAndHoldEnabled 0 # global defaults write com.jetbrains.pycharm ApplePressAndHoldEnabled 0 # per-app </syntaxhighlight> Category:macOS"