neoclide / coc-typos

Typos integration with coc.nvim
MIT License
32 stars 1 forks source link

coc-typos

Typos integration with coc.nvim.

It checks typos with opened buffer automatically.

Typos screen shot

Install

Install typos by:

cargo install typos-cli

Make sure typos in your $PATH.

Install this extension in your (neo)vim by:

:CocInstall coc-typos

Example configuration

Following example replaces default key-mappings of vim's builtin spellcheck.

" Move to next misspelled word after the cursor, 'wrapscan' applies.
nmap ]s <Plug>(coc-typos-next)

" Move to previous misspelled word after the cursor, 'wrapscan' applies.
nmap [s <Plug>(coc-typos-prev)

" Fix typo at cursor position
nmap z= <Plug>(coc-typos-fix)

File(s) specified by 'spellfile' option is loaded for known words when exists, use zg and zug to add and remove global known words. Or use _typos.toml

Commands

Variable

Options

CHANGELOG

v0.3.0

Troubleshooting

Use command :CocCommand workspace.showOutput typos to open output channel.

License

MIT


This extension is built with create-coc-extension