Mac defaults: Revision history

From ihaveahax's Site
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

22 January 2022

  • curprev 03:4603:46, 22 January 2022Ihaveahax talk contribs 463 bytes +463 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"