图标
费用
免费
官网下载
一、下载地址:https://code.visualstudio.com/
1、点击下载,浏览器会有下载地址https://az764295.vo.msecnd.net/stable/ea3859d4ba2f3e577a159bc91e3074c5d85c0523/VSCode-darwin.zip,
问题:一直下载不下来
解决:把az764295.vo.msecnd.net替换成国内镜像vscode.cdn.azure.cn,所以完整的下载路径为https://vscode.cdn.azure.cn/stable/ea3859d4ba2f3e577a159bc91e3074c5d85c0523/VSCode-darwin.zip。
安装
一、vscode拖到application中
设置
一、插件市场
将快捷键设置成webstorm:IntelliJ IDEA Keybindings
vue语法高亮:Vetur
前端/egg.js常用代码片段:project-tpl
git支持查看文件git提交历史、提交人:GitLens — Git supercharged
支持可选属性: javascript and typescript nightly
二、设置主题
code-preferences-color theme , 选择Solarized dark
设置 command + ,
一、修改字体
搜索font-size,把12改成14
二、设置文件自动保存
搜索auto save,把off改成onFoucusChange,表示焦点离开编辑器当前窗口时自动保存(切换标签页也会自动保存)
三、只能打开2个tab页
1、方法1
搜索edit in settings.json
“workbench.editor.enablePreview”: false, 有则把true改成false,没有则加上这行
2、方法2
搜索"enable preview"
前面的勾去掉
四、让panel一打开就是在右边
搜索panel,default locaiton,把bottom改成right
这样子一打开面板就是出现在右边了
五、换行
搜索word wrap
vscode设置
一、command + shift + p:选择将”code“命令添加到PATH
这样就在终端输入code . 就可以在终端打开vscode编辑器了。
git
1、让vscode记住用户名密码
git config --global user.email “you@example.com”
git config --global user.name “Your Name”
git config --global credential.helper store
vscode中运行uni-app
见:https://blog.csdn.net/aSuncat/article/details/111540644