Vscode 편집기 기본 커서가 너무 얇아서 들여쓰기 가이드라인(indent guide)과 겹치면 눈에 잘 보이지 않는 경우가 있다. 그럴 땐 아래 방법으로 커서 모양이나 굵기를 바꿀 수 있다.
Ctrl + Shift + P 를 눌러서 Preferences: Open User Settings (JSON)을 검색하고 열어서 입맛에 맞게 커서 모양을 바꿀 수 있다.
1. 기본 형태에서 굵기 변경 (cursorWidth의 값으로 굵기 변경)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"editor.cursorStyle": "line", | |
"editor.cursorWidth": 2, |
2. 블록 형태 커서 사용
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"editor.cursorStyle": "block", |
참고: https://stackoverflow.com/questions/47005048/increase-the-caret-cursor-size-in-vs-code