vscode 常用插件


漢化插件:Chinese (Simplified) Language Pack for Visual Studio Code

git相關:GitLens,git graph,Git Project Manager,Git Project Manager

實時預覽markdown文本:Markdown Preview

標簽配對:Auto Close Tag

標簽配對:Auto Rename Tag

自動導入:Auto Import

將代碼分享為圖片:carbon-now-sh

智能路徑提示:Path Intellisense

代碼美化:Beautify(或者 Prettier)

括號對齊高亮:Bracket Pair Colorizer

快捷添加/啟用/刪除console.log:Turbo Console Log

ctrl + alt + l 選中變量之后,使用這個快捷鍵生成 console.log
alt + shift + c 注釋所有 console.log
alt + shift + u 啟用所有 console.log
alt + shift + d 刪除所有 console.log

顏色信息及轉換: Color Info

谷歌調試工具:Debugger for Chrome

git:Git History

詳細的 Git 提交日志:GitLens

標簽高亮:Highlight Matching Tag

圖片實時查看:Image preview

注釋插件:koroFileHeader

實時更新工具:Live Server

MySQL:MySQL

圖標主題:Material Icon Theme

敲代碼特效:Power Mode

    // 常用配置
    {
        "powermode.enabled": true,
        "powermode.shakeIntensity": 0,
    }

遠程代碼實時更新插件(神器):SFTP

顏色拾取:VS Color Picker

深度對齊:Indenticator

vim:vim

運行代碼:Code Runner

配置插件管理(換機必備):Settings Sync

注釋美化:Better Comments

// 常用配置
"better-comments.tags": [
  {
    "tag": "!",
    "color": "#FF2D00",
    "strikethrough": false,
    "backgroundColor": "transparent"
  },
  {
    "tag": "?",
    "color": "#3498DB",
    "strikethrough": false,
    "backgroundColor": "transparent"
  },
  {
    "tag": "//",
    "color": "#474747",
    "strikethrough": true,
    "backgroundColor": "transparent"
  },
  {
    "tag": "todo",
    "color": "#FF8C00",
    "strikethrough": false,
    "backgroundColor": "transparent"
  },
  {
    "tag": "*",
    "color": "#98C379",
    "strikethrough": false,
    "backgroundColor": "transparent"
  }
]


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM