Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Code not matching html tags

I am using visual studio code for writing html but it doesn't have the feature of identifying closing tag for the current selected one. How can I achieve the same?

Here is how it looks on VS Code:

enter image description here

Can you suggest any extension or how can I achieve this? VS Code 1.7.1

like image 433
aks Avatar asked Nov 10 '16 08:11

aks


1 Answers

install this extension

highlight-matching-tag

and change the settings.json to

"highlight-matching-tag.leftStyle": {     "borderWidth": "0 0 0 3px",     "borderStyle": "dotted",     "borderColor": "red",     "borderRadius": "5px"  }, 
like image 199
Gamiiis Avatar answered Oct 09 '22 21:10

Gamiiis