About Visual Studio Code as well as some tools

Common plug-ins

Path Intellisense path tips

open in browser to open a browser ALT + B

 

Block

ctrl + shift + p/或者设置(左下角右下角的齿轮)=> 命令面板 => 搜索:snippet => 找到:首选项:配置用户代码片段  =>搜 js/html/cs => 找到javascript.json => 

 

Configuration: (bottom left gear => Settings => Copy Paste => ctr + S)

// set into the file to override the default settings 
{
     // AutoSave 
    "files.autoSave": "afterDelay" , 

     // pixels size control. 
     "editor.fontSize": 18 is ,
      // number of spaces is equal to a tab of 
     "editor.tabSize": 2 ,
      // updated automatically extended 
     "extensions.autoUpdate": to false ,
      // turn off the automatic update 
     "update.channel" : "none" ,
      // by using the tab key completion Code 
     "emmet.triggerExpansionOnTab": to true ,
     "window.zoomLevel":. 1 ,
     "vsicons.dontShowNewVersionMessage":"workbench.startupEditor": "newUntitledFile",
    "workbench.sideBar.location": "right",
    "explorer.confirmDelete": false
  }

 

vscode commonly used shortcut keys

  1. Ctrl + /: Notes

  2. Alt + B: quickly open the browser

  3. Copy: shift + alt + ↓

  4. Mobile: alt + ↓

  5. Formatting code specifications: shift + alt + F

  6. Folding sidebar: Ctrl + B

  7. + `CTR => switching terminal vscode

  8. Browser to bring up the console

    F12 to open the console

    mac dual system F12 = fn + F12

 

 

 

 

Guess you like

Origin www.cnblogs.com/javascript9527/p/11545361.html