Home > Development Tools > VSCode > body text

What to do if the tab key fails in vscode

王林
Release: 2020-03-24 17:39:35
Original
4239 people have browsed it

What to do if the tab key fails in vscode

Solution:

First, open the file --->Preferences--->Settings

(Learning video recommendation: java video tutorial)

Set as shown below:

What to do if the tab key fails in vscode

Note: Don’t write it wrong, it’s a full-width problem. You can directly copy the following content:

"emmet.syntaxProfiles": {
"vue-html":"html",
"vue":"html"
}
Copy after login

In the future after v1.15.1, you will write like this

"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html"
}
Copy after login

Finally, restart vscode.

Recommended tutorial: vscode tutorial

The above is the detailed content of What to do if the tab key fails in vscode. 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