MacOS – Can a keyboard shortcut force TextEdit windows to close and discard all changes

keyboardmacostexteditwindow-manager

Is there any way I could configure TextEdit to close the window (through keyboard shortcut) without asking me if I want to save an unsaved file?

Can be another script/program configure globally when triggered with a certain shortcut or just a script for TextEdit.

The reason for doing it is that I have a lot of temporary notes in TextEdit's window and I want to close them as fast as possible.

Best Answer

tell application "TextEdit" to close (windows where name of its document is "Untitled") saving no would close all untitled documents without saving them.

You could close the current window with tell application (path to frontmost application as text) to close window 1 saving no. It would close all tabs in some applications that use tabs though.

It's easier to just press ⌘W⌫ in my opinion. You can disable the animation for showing the sheets with defaults write -g NSWindowResizeTime -float 0.001.