macOS TextEdit – How to Open with a Blank File by Default

macostextedit

In Lion, TextEdit used to open with a blank file by default. On Mountain Lion, it launches with a file picker by default — either for choosing to store the file in iCloud or for opening a local file.

How can I make TextEdit launch with a blank file by default in Mountain Lion?

Best Answer

If you don't want to disable syncing documents and data, run

defaults write -g NSShowAppCentricOpenPanelInsteadOfUntitledFile -bool false

and quit and reopen TextEdit to apply the changes.

To restore (thanks to comments run)

defaults delete -g NSShowAppCentricOpenPanelInsteadOfUntitledFile

To set this for TextEdit only (thanks to comment by gklka)

defaults write com.apple.TextEdit NSShowAppCentricOpenPanelInsteadOfUntitledFile -bool false