Sublime Forum

Save *all* open files including multiple windows

#1

Is there a way to save all open files - not just in the current window, but all windows? The current File, Save All option only appears to work in the currently open window. Thanks.

0 Likes

#2

You could write a plugin… something like:

for window in sublime.windows(): window.run_command("save_all")

0 Likes

#3

That was easy. Thanks.

0 Likes

Bulk SAVE ALL open files