Visual Studio Code MDN 레퍼런스 팝업 비활성화
웹 개발 관련 수업을 진행하거나 웹 페이지 구성 파일을 코딩할 때 VSCode에서 태그 이름이나 CSS 속성 등에 마우스를 올리면 MDN 레퍼런스가 팝업으로 뜨는데 이게 여간 성가신게 아니다. 이를 비활성화 하기 위해 환경설정에 다음의 코드를 추가한다.
1
2
3
4
5
6
7
8
{
"css.hover.references": false,
"less.hover.references": false,
"scss.hover.references": false,
"html.hover.references": false,
"html.hover.documentation": false,
"editor.codeLens": false
}
This post is licensed under CC BY 4.0 by the author.