Skip to content

Commit

Permalink
Adjusts KeyRepeat & InitialKeyRepeat to be usable on macOS Sierra
Browse files Browse the repository at this point in the history
Looks like they've changed the scale in macOS Sierrra. `KeyRepeat -int 0` seems to be too impractical. I can't even hold backspace because it erases too much. Since you've taken this from another repo, it's worth referencing the same issue in that repo:

mathiasbynens/dotfiles#687
  • Loading branch information
padi committed Sep 21, 2017
1 parent f4c02f1 commit b68cd0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/macos
Expand Up @@ -56,7 +56,8 @@ defaults write NSGlobalDomain AppleFontSmoothing -int 2
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false


# Set a blazingly fast keyboard repeat rate # Set a blazingly fast keyboard repeat rate
defaults write NSGlobalDomain KeyRepeat -int 0 defaults write NSGlobalDomain KeyRepeat -int 1
defaults write NSGlobalDomain InitialKeyRepeat -int 15


# Disable auto-correct # Disable auto-correct
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
Expand Down

0 comments on commit b68cd0d

Please sign in to comment.