[TOC]
# 插件地址:
https://marketplace.visualstudio.com
您可以在這里找到有關擴展的文檔: https://code.visualstudio.com/docs/extensions/overview
# AI 加快編程
https://www.kite.com/integrations/vs-code/ 需要 額外下載核心分析程序
https://tabnine.com/ 直接安裝插件即可
# wallabyjs.quokka-vscode
Live Scratchpad for JavaScript.
# jabacchetta.vscode-essentials
是一個插件集合包
Turn VSCode into a supercharged IDE.
# rest client
能夠在 vscode 里面輕松發送請求,查看響應等各種功能。非常期待大家的建議和意見。
GitHub地址: https://github.com/Huachao/vscode-restclient
# Auto Rename Tag
更改HTML/XML標簽名時,自動更新相對應的開始標簽或結束標簽的標簽名
# Code run
作者:韓駿
鏈接:https://www.zhihu.com/question/40640654/answer/113932809
插件配置:
```
"code-runner.runInTerminal": true, //解決了 輸出 信息的亂碼問題!(下面還有)
"code-runner.showExecutionMessage": false,
"code-runner.saveFileBeforeRun": true,
"code-runner.enableAppInsights": false,
"code-runner.executorMap": {
"javascript": "node",
"java": "cd $dir && javac -encoding UTF-8 $fileName && java $fileNameWithoutExt", //java默認使用系統的中文編碼,所以這里改成和文件編碼一致
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
}
```
作者回答關于-亂碼:
可以參考這個[output utf8 chars incorrect · Issue #25 · formulahendry/vscode-code-runner](https://github.com/formulahendry/vscode-code-runner/issues/25#issuecomment-257123682), 有兩個解決方案:
1. 設置chcp
`"code-runner.executorMap": { "bat": "chcp 65001 |" }`
2. 設置用內置terminal
`{ "code-runner.runInTerminal": true }`兩個應該都能work,試試看