Add period with double-space
Allows you to type a period by pressing space twice.
- Tested on macOS:
- Sonoma
- Parameter type: bool
Set to true (default value)
When on, pressing space twice will insert a period and a space.
bash
defaults write NSGlobalDomain NSAutomaticPeriodSubstitutionEnabled -bool trueSet to false
When off, pressing space twice will insert two spaces.
bash
defaults write NSGlobalDomain NSAutomaticPeriodSubstitutionEnabled -bool falseRead current value
bash
defaults read NSGlobalDomain NSAutomaticPeriodSubstitutionEnabledReset to default value
bash
defaults delete NSGlobalDomain NSAutomaticPeriodSubstitutionEnabled