diff options
Diffstat (limited to 'runtime/syntax/vimspell.vim')
-rw-r--r-- | runtime/syntax/vimspell.vim | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/runtime/syntax/vimspell.vim b/runtime/syntax/vimspell.vim new file mode 100644 index 000000000..8192df8ce --- /dev/null +++ b/runtime/syntax/vimspell.vim @@ -0,0 +1,32 @@ +" Vim syntax file +" Language: Vim spell file +" Maintainer: Bram Moolenaar <Bram@vim.org> +" Last Change: 2005 Mar 20 + +" Quit when a syntax file was already loaded +if exists("b:current_syntax") + finish +endif + +syn match vimspellComment "^#.*" +syn match vimspellError "^-.*" +syn match vimspellRegion "^---$" +syn match vimspellRegion "^\(-\l\l\)\+$" +syn match vimspellError "^[^- #+=>].*" +syn match vimspellError "\s\+$" + +" Define the default highlighting. +" Only when an item doesn't have highlighting yet +if version >= 508 || !exists("did_diff_syntax_inits") + command -nargs=+ HiLink hi def link <args> + + HiLink vimspellComment Comment + HiLink vimspellRegion DiffAdd + HiLink vimspellError Error + + delcommand HiLink +endif + +let b:current_syntax = "vimspell" + +" vim: ts=8 sw=2 |