> For the complete documentation index, see [llms.txt](https://notes.eliasnorrby.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.eliasnorrby.com/vim/spelling.md).

# Spelling

Here are some useful commands and bindings for making use of vim's spell checking:

* `:set spell` enables spelling checking
* `]s` and `[s` navigates between misspelled words
* `z=` brings up a list of suggestions to replace a misspelled word

Calling `z=` with a count (i.e. `1z=`) will select that suggestion without prompting.

Source: `:h spell`
