Stop TextEdit from using iCloud save

Solution 1:

Saving to cloud is easy to disable in system preferences:

  1. Go to the iCloud Preference Pane
  2. Select iCloud Drive
  3. Click on "Options"
  4. Check and uncheck the apps you want saved in iCloud.

This was tested on Yosemite and a Macbook Pro 2015

Solution 2:

You can run the following Terminal command, which will revert the new behaviour of saving new files to iCloud:

defaults write com.apple.TextEdit NSDocumentSaveNewDocumentsToCloud -bool false

To set this for all apps, run…

defaults write -g NSDocumentSaveNewDocumentsToCloud -bool false

To revert, replace false with true.