美文网首页
爱上使用vscode

爱上使用vscode

作者: guoss | 来源:发表于2020-07-09 16:40 被阅读0次

vscode打开速度非常快,轻便。哈哈哈
1.git history 查看提交历史
2.git lens 查看当前代码修改的人
3.JavaScript (ES6) code snippets 支持es6联想
4.vue vue语法补全
5.sass、less,支持sass之类的语法

vue中部分html标签支持:

"files.associations": {
    "*.vue":"html"
  },
"emmet.triggerExpansionOnTab": true,
  "emmet.includeLanguages": {
    "vue-html": "html",
    "vue": "html"
  }

6.html结束标签不能自动修改

Auto Rename Tag 插件可以解决
  1. 智能提示CSS类名以及id
html css support

8.es6语法支持

javascript (es6) code snippets

9.文件路径补充

Path Autocomplete
  1. vue中标签补全
Vue 2 Snippets
  1. VUE代码自动补全插件
Vue VSCode Snippets

12.自动闭合HTML/XML标签

Auto Close Tag

13.安装eslint之后,配置文件不生效,setting.json中配置如下,参考文章https://segmentfault.com/a/1190000009077086

"eslint.options": {
    "configFile": "D:/working/leihuo/.eslintrc.js"
  },

相关文章

网友评论

      本文标题:爱上使用vscode

      本文链接:https://www.haomeiwen.com/subject/bhjjcktx.html