From 239e42f0558ca16cae194df7bfc1ff94d56a2806 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Thu, 30 Nov 2017 20:41:26 +0000 Subject: [PATCH] Disable spell correction in OS X. --- .ansible/roles/mac_desktop/tasks/prefs.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.ansible/roles/mac_desktop/tasks/prefs.yaml b/.ansible/roles/mac_desktop/tasks/prefs.yaml index 730efc0..b1ab1ce 100644 --- a/.ansible/roles/mac_desktop/tasks/prefs.yaml +++ b/.ansible/roles/mac_desktop/tasks/prefs.yaml @@ -75,6 +75,24 @@ key: NSAutomaticDashSubstitutionEnabled value: 0 +- name: 'OS X: Spell correction off' + tags: + - config + osx_defaults: + domain: NSGlobalDomain + type: int + key: NSAutomaticSpellingCorrectionEnabled + value: 0 + +- name: 'OS X: Web spell correction off' + tags: + - config + osx_defaults: + domain: NSGlobalDomain + type: int + key: WebAutomaticSpellingCorrectionEnabled + value: 0 + - name: 'OS X: Clear preferences cache' tags: - config