summaryrefslogtreecommitdiff
path: root/runtime/syntax/vimspell.vim
blob: 4c4149bdd2806d1a2e58b2025b395397d0db9b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
" Vim syntax file
" Language:	Vim spell file
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2005 Mar 24

" Quit when a syntax file was already loaded
if exists("b:current_syntax")
  finish
endif

syn match vimspellError		".*"
syn match vimspellRegion	"^---$"
syn match vimspellRegion	"^\(-\l\l\)\+$"
syn match vimspellOK		"^!\=[>+]\=[[:alpha:]].*"
syn match vimspellOK		"^!\=+\S*"
syn match vimspellError		"\s\+$"
syn match vimspellOK		"^$"
syn match vimspellComment	"^#.*"

" 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