如何在VSCode中搭建HTML编译环境

2020-06-06  本文已影响0人  ShowMeCoding

1 打开软件进行设置

第一步

2 选择Suggestions取消默认设置

第二步

3 选择Files并对HTML语言进行设置关联

第三步

4 编写相关代码

第四步

内附代码:

{
    "python.pythonPath": "E:\\Users\\lenovo\\AppData\\Local\\Programs\\Python\\Python38-32\\python.exe",
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "python.jediEnabled": false,
    "files.autoSave": "afterDelay",
    "emmet.triggerExpansionOnTab": true,
    "files.associations": {
        "*.html":"html"
    },
    "editor.suggest.filterGraceful": false,
    "editor.suggest.snippetsPreventQuickSuggestions": false
}

VsCode编写HTML常用插件

插件1
插件2
插件3
上一篇 下一篇

猜你喜欢

热点阅读