Home > Development Tools > VSCode > What should I do if the html tag in vscode cannot be completed?

What should I do if the html tag in vscode cannot be completed?

王林
Release: 2020-03-24 16:35:21
Original
3548 people have browsed it

What should I do if the html tag in vscode cannot be completed?

1. Install the plug-in

What should I do if the html tag in vscode cannot be completed?

2. Configure the files.associations object

What should I do if the html tag in vscode cannot be completed?

(Learning video recommendation: java video tutorial)

The page after opening is as follows:

What should I do if the html tag in vscode cannot be completed?

Found in the Comm Used list "files.associations": {}

What should I do if the html tag in vscode cannot be completed?

#Add the following content:

{    
"emmet.triggerExpansionOnTab": true,    "files.associations": {"*.js": "html"}
}
Copy after login

Similarly, make changes in Workspace settings.

Add the following content:

{    
"workbench.editor.closeEmptyGroups": false,    
"emmet.triggerExpansionOnTab": true,    
"files.associations": {"*.js": "html"}
}
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template