본문 바로가기

Vue.js

VS Code html 자동 태그 안됨 개선

VS Code에서 Auto Close Tag 를 깔았는데 뭔가 잘 안된다.

 

심지 어 <div>를 치고 싶은데

<divisibleby> 로 자동완성이 된다.

 

이유를 알아보니  VS Code 에서 html 을 django-html 로 인식하고 있었기 때문.

1.

settings.json 에 들어가서 다음과 같은 내용을 추가해준다.

 

    "files.associations":{
    	"*.html":"html"
    },

 

 

 

2.

File > Preference > Settings > Linked Editing 검색 > 체크 해주기

 

 

이 두가지를 해주니 잘된다.