[VS Code] VS Code에 Vim을 설치하면 빨간색 하이라이트로 고생했습니다.
Problem
VS Code의 확장 기능 "Vim"을 설치하면 원인 불명의 빨간색 하이라이트에 습격된다
원인
마찬가지로 확장 기능 Trailing Spaces와 간섭하는 모습
Trailing Spaces - Visual Studio Marketplace
줄 끝의 공간을 강조 표시하고 알려줍니다.
저장시 자동으로 공간을 제거하는 것도 가능, 편리!
해결
다음을 참고로 편집중인 행을 강조 표시하지 않도록 설정합니다.
Highlight Current Line
Default: true
Highlighting of trailing spaces in the currently edited line can be annoying: each time you are about to start a new word, the space you type is matched as a trailing spaces. Currently edited line can thus be ignored:
{ "trailing-spaces.highlightCurrentLine": false }
Trailing Spaces - Visual Studio Marketplace
settings.json에 다음 행을 추가합니다.
"trailing-spaces.highlightCurrentLine": false,
덧붙여서, 저장시 자동 공간 삭제 옵션은
"trailing-spaces.trimOnSave": true,
환경
마찬가지로 확장 기능 Trailing Spaces와 간섭하는 모습
Trailing Spaces - Visual Studio Marketplace
줄 끝의 공간을 강조 표시하고 알려줍니다.
저장시 자동으로 공간을 제거하는 것도 가능, 편리!
해결
다음을 참고로 편집중인 행을 강조 표시하지 않도록 설정합니다.
Highlight Current Line
Default: true
Highlighting of trailing spaces in the currently edited line can be annoying: each time you are about to start a new word, the space you type is matched as a trailing spaces. Currently edited line can thus be ignored:
{ "trailing-spaces.highlightCurrentLine": false }
Trailing Spaces - Visual Studio Marketplace
settings.json에 다음 행을 추가합니다.
"trailing-spaces.highlightCurrentLine": false,
덧붙여서, 저장시 자동 공간 삭제 옵션은
"trailing-spaces.trimOnSave": true,
환경
{ "trailing-spaces.highlightCurrentLine": false }
"trailing-spaces.highlightCurrentLine": false,
"trailing-spaces.trimOnSave": true,
Reference
이 문제에 관하여([VS Code] VS Code에 Vim을 설치하면 빨간색 하이라이트로 고생했습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/naokit-dev/items/79debc42714914fce8e9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)