auto comment closing html tag vs code 5c

Solutions on MaxInterview for auto comment closing html tag vs code 5c by the best coders in the world

showing results for - "auto comment closing html tag vs code 5c"
Joan
02 Oct 2018
1 
2, run the global command Preferences: Configure Language Specific Settings (command id: workbench.action.configureLanguageBasedSettings) from the Command Palette (Ctrl+Shift+P) which opens the language picker. Select the language you want, which then opens your user settings.json with the language entry where you can add applicable settings.
3
4
5
6"emmet.preferences":{
7    "filter.commentAfter": "<!-- /[#ID][.CLASS] -->",
8  },
9  "emmet.syntaxProfiles": {
10  // Enable XHTML dialect for HTML syntax
11  // “html”: “xhtml”
12    "html" : {
13      "filters" :"html, c"
14      }
15  },