答え1
vim
構文チェックは行われません。これを明示的に指定します(例:32行/usr/share/vim/vim82/doc/spell.txt
):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|