Skip to content

Visual Studio Code (VSCode)

Visual Studio Code is a free source-code editor

Snippet Generator

Short Cut Keys

  1. Command Pallet:

    Ctrl + Shift + p or F1

  2. Settings:

    Ctrl + ,

  3. Zen Mode

    Ctrl + k and z

  4. Go to File Bread Crumb on the top:

    Ctrl + Shift + ;

  5. Find a word and put cursor on each one of them:

    Ctrl + Shift + l

Change Market Place URL

Open product.json file present in /usr/lib/code/:

Replace:

json
"extensionsGallery": {
   "serviceUrl": "https://open-vsx.org/vscode/gallery",
   "itemUrl": "https://open-vsx.org/vscode/item"
},

With:

json
"extensionsGallery": {
   "serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
   "itemUrl": "https://marketplace.visualstudio.com/items"
},

Stackoverflow Reference