💾 Archived View for gemini.ctrl-c.club › ~nristen › mht-vim.gmi captured on 2022-03-01 at 16:07:32. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-03)

➡️ Next capture (2023-01-29)

-=-=-=-=-=-=-

Nristen's (g)log - Mini How Tos - Vim

VIM

Spell Checking

To turn on spell checking for all buffers:

:set spell spelllang=en_us

To turn on spell checking for only the local buffer:

:setlocal spell spelllang=en_us

Turn off spell checking:

:set nospell

When the cursor is on a mispelled word, use "z=" to see suggestions.

"]s" jump to the next mispelling

"[s" jump to previous mispelling

Add the word that the cursor is on to the internal word list:

zG