Last Updated: February 25, 2016
·
16.19K
· bcandullo

Sublime Text Save All Keyboard Shortcut

I was getting tired of using my mouse for this; I cannot be the only one.

Go to Preferences -> Key Bindings -> Default

You should find the prompt_save_as command around line 9. Insert this after it:
{ "keys": ["ctrl+shift+alt+s"], "command": "save_all" },

Now Ctrl+Shift+Alt+S will save all open files. Yay.

Note: This was with ST2 and hasn't been tested with version 3

3 Responses
Add your response

Doesn't allow you to change Preferences -> Key Bindings -> Default, I added this in Preferences -> Key Bindings -> User instead and it works.. also I have overridden it to
{ "keys": ["ctrl+shift+s"], "command": "save_all" }. Works fine.

If you manage to change something in Preferences -> Key Bindings -> Default (somehow), it will get overwritten when you upgrade. So the best place to add this is Preferences -> Key Bindings -> User

over 1 year ago ·

If you set the binding to [ctrl+shift+s] you override the "save as" keyboard shortcut. Just a heads to anyone that may find that key binding useful.

over 1 year ago ·

In ST3 this was not in the default keymap so I added ...

{ "keys": ["ctrl+s"], "command": "save_all" },

because I always want to save all.

over 1 year ago ·