From f86fb9c0078eb9229799dbc5a755b7fa6dbfe11f Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 8 Mar 2006 09:15:20 +0000 Subject: add haskell.vim Contributed by Brad Bowman , thanks! --- haskell.vim | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 haskell.vim (limited to 'haskell.vim') diff --git a/haskell.vim b/haskell.vim new file mode 100644 index 00000000..14f6f591 --- /dev/null +++ b/haskell.vim @@ -0,0 +1,64 @@ +" Attempt to add haddock highlighting for haskell comments +" It should be placed in ~/.vim/after/syntax/haskell.vim +" Brad Bowman + +syn match hsHdocStart "\([$^|]\|\*\+\)" contained + +syn region hsHdocAnchor start="#" skip="\\#" end="#" contained oneline +syn match hsHdocChunk "$\i\+" contained +syn match hsHdocMod /"\(\i\|[.]\)\+"/ contained +syn match hsHdocLink "'\(\i\|[.#]\)\+'" contained +syn region hsHdocEm start="/" skip="\\/" end="/" contained oneline +syn region hsHdocURL start="<" end=">" contained oneline +syn region hsHdocCode start="@" skip="\\@" end="@" contained oneline +syn region hsHdocCodeBlock start="^@" end="^@" contained +syn match hsHdocBHeading "^\s*\*\+" contained +syn match hsHdocLHeading "\(^\s*--\s*\)\@<=\*\+" contained +syn match hsHdocBTracks "^\s*>" contained +" match only the > using a look-behind +syn match hsHdocLTracks "\(^\s*--\s*\)\@<=>" contained + +syn cluster hsHdocSpecial + \ contains=hsHdocMod,hsHdocLink,hsHdocEm,hsHdocCode,hsHdocURL, + \ hsHdocCodeBlock,hsHdocAnchor,hsHdocChunk + +syn region hsHdocDef start="^\s*\(--\)\?\s*\[" end="\]" contained contains=hsHdocSpecial + +syn region hsHdocLines start="--\s*\([$\^|]\|\*\+\)" + \ skip="^\s*\(--.*\)$" + \ end="^\s*\(\$\|--\)\@!" + \ contains=@hsHdocSpecial,hsHdocLTracks,hsHdocLHeading +syn region hsHdocBlock start="{-\s*\([$\^|]\|\*\+\)" end="-}" + \ contains=@hsHdocSpecial,hsHdocBTracks,hsHdocBHeading + +syn sync minlines=10 + +if version >= 508 || !exists("did_haddock_syntax_inits") + if version < 508 + let did_haddock_syntax_inits = 1 + command -nargs=+ HiLink hi link + else + command -nargs=+ HiLink hi def link + endif + + HiLink hsHdocLines hsHdoc + HiLink hsHdocBlock hsHdoc + HiLink hsHdoc PreProc + HiLink hsHdocAnchor Special + HiLink hsHdocChunk Special + HiLink hsHdocMod Special + HiLink hsHdocLink Special + HiLink hsHdocEm Special + HiLink hsHdocURL Special + HiLink hsHdocCode Special + HiLink hsHdocLHeading Special + HiLink hsHdocBHeading Special + HiLink hsHdocLTracks Special + HiLink hsHdocBTracks Special + HiLink hsHdocCodeBlock Special + HiLink hsHdocSpecial Special + + delcommand HiLink +endif + +" Options for vi: sw=2 sts=2 nowrap ft=vim -- cgit v1.2.3