Skip to content

heavenshell/vim-misspell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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