답변1
vim
구문 검사는 수행되지 않습니다. 이를 명시적으로 명시합니다(예: 32행/usr/share/vim/vim82/doc/spell.txt
)(파일은 배포판 및 설치된 vim 버전에 따라 시스템의 다른 위치에 있을 수 있습니다. 또는 을:help spell
입력 하십시오vim
)Vim only checks words for spelling, there is no grammar check.
AFAICT 그 끔찍한 청록색 텍스트를 자세히 살펴보면 대문자 사용 문제인 것 같습니다("this"는 "This"로 대문자로 사용해야 함). 다음을 추가해 보세요
.vimrc
.hi SpellCap cterm=underline ctermfg=red
그건 그렇고, 같은 spell.txt
문서에는 다음과 같이 나와 있습니다.
The words that are not recognized are highlighted with one of these:
SpellBad word not recognized |hl-SpellBad|
SpellCap word not capitalised |hl-SpellCap|
SpellRare rare word |hl-SpellRare|
SpellLocal wrong spelling for selected region |hl-SpellLocal|