12

I tried to follow the directions in the Keybindings settings, but it didn't work.

enter image description here

I copied the default entry, opened the keymap file, pasted, changed to 'all', and saved.

'body':
  'ctrl-shift-S': 'core:save-all'

I changed two files then presses CTRL-SHIFT-S but they still had the blue modified marker.

I tried the 'keybinding resolver' mentioned in the comments with CTRL-., and it seems to recognize what I created, but it's not saving all files.

enter image description here

Atom 1.27.2

Chloe
  • 25,162
  • 40
  • 190
  • 357

1 Answers1

20

You need to change the core to window

'body':
  'ctrl-shift-S':'window:save-all'

See https://github.com/atom/atom/issues/9390

andrewgi
  • 620
  • 1
  • 7
  • 22
  • Wow not intuitive at all, especially since Save All is right below Save As in the menu. – Chloe Jun 08 '18 at 18:59