diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2023-12-04 03:23:38 +0100 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2023-12-04 03:23:38 +0100 |
commit | 08d8a6c2942a4213a2ec439e89f641ddc39aa90f (patch) | |
tree | 611ef5ae554bc8c1eb1af0efb3ab889827776b05 | |
parent | 1580cf155f77c8c87e97c13320c5f37cd2f35efd (diff) |
Add vim spellcheck commands
-rw-r--r-- | vim.md | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -93,10 +93,12 @@ g<c-a/x> - increment/decrement by 1 more on each selected line ## Spellcheck - :setlocal spell spelllang=en_us - [/]s - previous/next marked word - [/]S - previous/next bad word - z= - replacement suggestions +* `:setlocal spell spelllang=en_us`: start English spell checker in current pane +* `[/]s`: previous/next marked word +* `[/]S`: previous/next bad word +* `z=`: replacement suggestions +* `z[u]g`: add/remove from dictionary +* `z[u]w`: add/remove from wrong word list ## Formatting |