PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, November 21, 2022

[FIXED] How can we save all files in (VSCode) like we do in Visual Studio

 November 21, 2022     keyboard-shortcuts, visual-studio, visual-studio-code     No comments   

Issue

How can we save all the files in Visual Studio Code like we do in Visual Studio by pressing Ctrl+Shift+S ?


Solution

It doesn't look like VS Code has a built-in single-press keyboard shortcut to save all open files on Windows.

The simplest way would be to use the menu accelerators: ALT+F, followed by ALT+L.

Alternatively, you can change the key binding by editing the keyboard preferences:

VS Code with File menu open, Preferences, Keyboard Shortcuts highlighted

Add the binding to the right half of the screen, then restart VS Code:

// Place your key bindings in this file to overwrite the defaults
[
    { 
      "key": "ctrl+shift+s", 
      "command": "workbench.action.files.saveAll" 
    }
]

enter image description here



Answered By - jessehouwing
Answer Checked By - Senaida (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing