简体   繁体   中英

How to autocomplete tag.className in Visual Studio Code like Sublime Text

In sublime Text 2 writing div.panel then press tab, or the auto complete trigger, in the HTML document produces <div class="panel"></div>

I have tried to get the same result in Visual Studio Code version 1.17.1 but I could not able to get it.

I am using the following plugins:

  • Auto Close Tag
  • HTML CSS Support
  • HTML Snippets

settings.json Ctrl + ,

"emmet.triggerExpansionOnTab": true,
"emmet.showSuggestionsAsSnippets": true,
"editor.snippetSuggestions": "top"

In the latest version of vs code, you need to go in seetings using Ctrl+, key and search for Emmet. Tick the checkbox of Emmet: Show Suggestions As Snippets and Emmet: Triger Expansion On Tab and you will be able to use Emmet functionalities.

Add it at setting.json

"emmet.includeLanguages": {
"javascript": "javascriptreact"}

Do not forget to ADD A COMMA at the end of the closing bracket above this code.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM