Home > Article > Development Tools > What should I do if the html tag in vscode cannot be completed?
1. Install the plug-in
2. Configure the files.associations object
(Learning video recommendation: java video tutorial)
The page after opening is as follows:
Found in the Comm Used list "files.associations": {}
#Add the following content:
{ "emmet.triggerExpansionOnTab": true, "files.associations": {"*.js": "html"} }
Similarly, make changes in Workspace settings.
Add the following content:
{ "workbench.editor.closeEmptyGroups": false, "emmet.triggerExpansionOnTab": true, "files.associations": {"*.js": "html"} }
Recommended tutorial: vscode tutorial
The above is the detailed content of What should I do if the html tag in vscode cannot be completed?. For more information, please follow other related articles on the PHP Chinese website!