How can I set a shortcut for File: Save All Files
(NOT File: Save All
)? It appears in the command palette:
But not in the keyboard shortcut list:
How can I set a shortcut for File: Save All Files
(NOT File: Save All
)? It appears in the command palette:
But not in the keyboard shortcut list:
The internal command name for "Files: Save All Files" is "workbench.action.files.saveFiles". (I had to look in the source code to find it.)
Here is a screenshot of it bound to Ctrl+A, Ctrl+A in the GUI:
In keybindings.json, that is:
{
"key": "ctrl+a ctrl+a",
"command": "workbench.action.files.saveFiles"
},