Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 972 Bytes

README.md

File metadata and controls

47 lines (30 loc) · 972 Bytes

vim-misspell

Build Status

misspell for Vim.

Realtime spell check

vim-misspell is a wrapper of misspell.

Dependencies

Install misspell.

Usage

Invoke manually

Open file and just execute :Misspell.

That's it.

Automatically check on save

autocmd BufWritePost * call misspell#run()

Run Misspell, QuickFixStatus and Vim-Hier

function! s:misspell_after(...)
  execute ':QuickfixStatusEnable'
  execute ':HierUpdate'
endfunction

let g:misspell_callbacks = {
  \ 'after_run': function('s:misspell_after')
  \ }

autocmd BufWritePost * call misspell#run()
autocmd InsertLeave * call misspell#run()
autocmd TextChanged,TextChangedI * call misspell#run()

License

New BSD License