Puppet Class: osx::global::disable_smart_quotes

Defined in:
manifests/global/disable_smart_quotes.pp

Overview

Public: Disables Smart quotes and dashes



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/global/disable_smart_quotes.pp', line 2

class osx::global::disable_smart_quotes {
  boxen::osx_defaults { 'Disable smart quotes':
    ensure => present,
    domain => 'NSGlobalDomain',
    key    => 'NSAutomaticQuoteSubstitutionEnabled',
    value  => false,
    user   => $::boxen_user;
  }

  boxen::osx_defaults { 'Disable smart dashes':
    ensure => present,
    domain => 'NSGlobalDomain',
    key    => 'NSAutomaticDashSubstitutionEnabled',
    value  => false,
    user   => $::boxen_user;
  }
}