728x90
반응형
질문 : Visual Studio Code에 공백 문자 표시
Visual Studio Code에서 공백 문자와 같은 공백 문자를 표시 할 수 있습니까?
settings.json
에는 옵션이없는 것 같습니다 (Atom.io 의 옵션이지만), CSS를 사용하여 공백 문자를 표시 할 수 없었습니다.
답변
VS Code 1.6.0 이상
아래 aloisdg에서 언급했듯이 editor.renderWhitespace
none
, boundary
또는 all
취하는 열거 형입니다. 모든 공백을 보려면 :
"editor.renderWhitespace": "all",
VS Code 1.6.0 이전
1.6.0 이전에는 editor.renderWhitespace
를 true
로 설정해야했습니다.
"editor.renderWhitespace": true
출처 : https://stackoverflow.com/questions/30140595/show-whitespace-characters-in-visual-studio-code
728x90
반응형
'개발관련 > other' 카테고리의 다른 글
Authentication vs Authorization 웹 애플리케이션 컨텍스트의 차이점 (0) | 2021.12.09 |
---|---|
Login failed for user 'IIS APPPOOL\ASP.NET v4.0' (0) | 2021.12.09 |
Scala에서 객체와 클래스의 차이점 (0) | 2021.12.07 |
Docker 컨테이너 내부에서 머신의 로컬 호스트에 연결하는 방법 (0) | 2021.12.07 |
UIViewController의 뷰가 보이는지 확인하는 방법 (0) | 2021.12.07 |