File: vimrc

package info (click to toggle)
ispell-czech 20040229-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,580 kB
  • ctags: 5
  • sloc: perl: 711; makefile: 70; sh: 43
file content (5 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (8)
1
2
3
4
5
" F8 to highlight spelling error, F7 to remove highlighting
noremap <F8> :let spellcheckfile = tempname()<CR>:write !mkspellcheck spellcheckfile -d czech<CR><CR>:source spellcheckfile<CR><CR>
noremap <F7> :syntax clear SpellErrors<CR>
" Ctrl-X to start ispell from the current line
map <C-X> !Gfspell -d czech<CR>:redraw!<CR>