Tim Mattison

Hardcore tech

Rid Yourself of Smart Quotes, Smart Dashes, and Automatic Spelling Correction on Mac OS

| Comments

Have you ever pasted working a bash script or piece of code into a text editor and had it fail to work when you copied it back out later? You’ve probably fallen victim to smart quotes, smart dashes, or automatic spelling correction.

For example, during development I write scripts in Evernote and two very common things happen:

  • aws is persistently and annoyingly replaced by the word “was”
  • Commands that include double or single quotes have those quotes replaced with scripting hostile quotes that shells don’t understand

In Mac OS we can fix this in a few steps:

  1. Open System Preferences and click on Keyboard Keyboard
  2. Click “Text” Keyboard
  3. Uncheck “Use smart quotes and dashes” Keyboard
  4. Uncheck “Correct spelling automatically” Keyboard

You’re done! Now your settings should look like this and these “smart” features will never bother you again:

Keyboard

Comments