[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,试试看