Spell checking with vim with undercurl

I recently added support for underline styles in Terminal. This can be used for spell checking in vim.

vim configured with:

let &t_Cs = "\e[4:3m"
let &t_Ce = "\e[4:0m"
hi SpellBad   guisp=red    gui=undercurl guifg=NONE guibg=NONE ctermfg=NONE ctermbg=NONE term=underline cterm=undercurl ctermul=red
13 Likes

Thanks, one thing crossed from my todo list without having to do it myself! :smiley:

3 Likes

Did Not know vim could do that, thank you.

2 Likes