How do I make CTRL-SHIFT-S bind to Save All in Atom?
Asked Answered
C

1

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

Clew answered 8/6, 2018 at 0:44 Comment(0)
W
20

You need to change the core to window

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

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

Wast answered 8/6, 2018 at 15:54 Comment(1)
Wow not intuitive at all, especially since Save All is right below Save As in the menu.Clew

© 2022 - 2024 — McMap. All rights reserved.